Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $app->get('/super', cdApi::class . ':getOne');
  2.  
  3. class Foo {
  4. public static function aStaticMethod() {
  5. return 'Hello World'
  6. }
  7. }
  8.  
  9. $var = Foo::aStaticMethod()
  10.  
  11. class Foo {}
  12. print Foo::class //prints 'Foo'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement