Guest User

Untitled

a guest
Jan 21st, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class Foo {
  2. public function __call($name, $parameters) {
  3. echo "You called $name().n";
  4. }
  5. }
  6.  
  7. $f = new Foo;
  8. $f->test(); // runs fine, but PhpStorm flags as a warning
  9.  
  10. $f = new Foo;
  11. $f->test()->chain()->moreChain(); // potentially runs fine
Add Comment
Please, Sign In to add comment