Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php namespace App;
  2.  
  3. class Facade {
  4.  
  5. public static function __callStatic($method, $args) {
  6. $object = static::getAccessor();
  7. $instance = new $object;
  8. $instance->$method(...$args);
  9. }
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement