proxy.php 587 B

123456789101112131415161718192021
  1. <?php namespace Laravel;
  2. /**
  3. * The Proxy class, like the File class, is primarily intended to get rid of
  4. * the testability problems introduced by PHP's global functions.
  5. *
  6. * For instance, the APC cache driver calls the APC global functions. Instead of
  7. * calling those functions directory in the driver, we inject a Proxy instance into
  8. * the class, which allows us to stub the global functions.
  9. */
  10. class Proxy {
  11. /**
  12. * Magic Method for calling any global function.
  13. */
  14. public function __call($method, $parameters)
  15. {
  16. return call_user_func_array($method, $parameters);
  17. }
  18. }