예제 #1
0
파일: Hook.php 프로젝트: aaemnnosttv/silk
 /**
  * Set the callback to be invoked by the action or filter.
  *
  * @param callable $callback    The callback to be invoked
  *
  * @return $this
  */
 public function setCallback(callable $callback)
 {
     $this->callback = new Callback($callback);
     $this->callbackParamCount = $this->callback->parameterCount();
     return $this;
 }