WithMagicGetter.php 259 B

123456789101112131415
  1. <?php
  2. namespace GetOpt;
  3. trait WithMagicGetter
  4. {
  5. public function __get($name)
  6. {
  7. $method = [$this, 'get' . ucfirst($name)];
  8. if (is_callable($method)) {
  9. return call_user_func($method);
  10. }
  11. return null;
  12. }
  13. }