nezzario

Phpdoc with methods

Feb 15th, 2015
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2. /**
  3. * @var Bus
  4. */
  5. protected $bus;
  6.  
  7. /**
  8. * @var Array
  9. */
  10. protected $filter;
  11.  
  12. /**
  13. * @var Callable
  14. */
  15. protected $callback;
  16.  
  17. // This doesn't work
  18.  
  19. /**
  20. * @var Bus
  21. * @var Array
  22. * @var Callable
  23. */
  24.  
  25. protected $bus, $array, $callable;
Advertisement
Add Comment
Please, Sign In to add comment