コード例 #1
0
ファイル: Container.php プロジェクト: weew/container
 /**
  * @param $class
  * @param $method
  * @param array $args
  *
  * @return mixed
  */
 public function callStaticMethod($class, $method, array $args = [])
 {
     return $this->rethrowExceptions(function () use($class, $method, $args) {
         return $this->reflector->resolveMethod($this, $class, $method, $args);
     });
 }