call() 공개 메소드

Missing parameters will be resolved from the container.
public call ( callable $callable, array $parameters = [] ) : mixed
$callable callable Function to call.
$parameters array Parameters to use. Can be indexed by the parameter names or not indexed (same order as the parameters). The array can also contain DI definitions, e.g. DI\get().
리턴 mixed Result of the function.
예제 #1
0
 /**
  * @param InvokeAction $message
  * @param mixed        $actionResult
  *
  * @return void
  */
 private function respond(InvokeAction $message, $actionResult)
 {
     if ($message->action->getResponder() === null) {
         return;
     }
     $this->container->call($message->action->getResponder(), $actionResult ? ['data' => $actionResult] : []);
 }
예제 #2
0
파일: App.php 프로젝트: sheerockoff/marabu
 /**
  * Внедрить зависимости (DI) в обработчик,
  * выполнить его и вернуть результат.
  *
  * @param callable|\Closure $handler
  * @param array $dependencies
  * @return mixed
  */
 protected function handle($handler, array $dependencies = [])
 {
     if ($handler !== null) {
         if ($handler instanceof \Closure) {
             $handler = $handler->bindTo($this->container);
         }
         return $this->container->call($handler, $dependencies);
     }
     return null;
 }
예제 #3
0
 /**
  * @param $class
  * @param $method
  * @param array $params
  * @return mixed
  */
 public function call($class, $method, $params = [])
 {
     return $this->phpDiContainer->call([$class, $method], $params);
 }