Pyh.conf’25: a new PHP conference for the Russian-speaking community

Voting

: nine minus two?
(Example: nine)

The Note You're Voting On

Kristof
11 years ago
don't forget you can create complex (embedded) traits as well

<?php
trait Name {
// ...
}
trait
Address {
// ...
}
trait
Telephone {
// ...
}
trait
Contact {
use
Name, Address, Telephone;
}
class
Customer {
use
Contact;
}
class
Invoce {
use
Contact;
}
?>

<< Back to user notes page

To Top