Guest User

Untitled

a guest
Nov 25th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2. trait Timestampable
  3. {
  4. private $created;
  5. private $updated;
  6. }
  7.  
  8. class Model
  9. {
  10. use Timestampable;
  11. }
  12.  
  13. $rc = new ReflectionClass("Model");
  14. echo "props:";
  15. foreach ($rc->getProperties() AS $p) {
  16. echo $p->getName() . "\n";
  17. }
Add Comment
Please, Sign In to add comment