コード例 #1
0
ファイル: Some.php プロジェクト: pldin601/Slung
 /**
  * @param callable $callable
  * @return $this
  */
 public function then($callable)
 {
     call_user_func(Compiler::getCallableObject($callable));
     return $this;
 }
コード例 #2
0
 public function sort($callable)
 {
     $copy = $this->container;
     uasort($copy, Compiler::getCallableObject($callable, 2));
     return new self($copy);
 }
コード例 #3
0
 public function sort($callable)
 {
     uasort($this->container, Compiler::getCallableObject($callable, 2));
     return $this;
 }
コード例 #4
0
ファイル: None.php プロジェクト: pldin601/SlungFramework
 /**
  * @param callable $callable
  * @return $this
  */
 public function otherwise($callable)
 {
     call_user_func(Compiler::getCallableObject($callable, 0));
     return $this;
 }
コード例 #5
0
ファイル: Some.php プロジェクト: pldin601/SlungFramework
 /**
  * @param callable $callable
  * @return $this
  */
 public function then($callable)
 {
     call_user_func(Compiler::getCallableObject($callable, 1, false), $this->get());
     return $this;
 }