コード例 #1
0
ファイル: ProxyTrait.php プロジェクト: rakesh-mohanta/states
 /**
  * To pop the current caller in the stated class name stack.
  *
  * @return ProxyInterface
  */
 private function popCallerStatedClassName() : ProxyInterface
 {
     if (false === $this->callerStatedClassesStack->isEmpty()) {
         $this->callerStatedClassesStack->pop();
     }
     return $this;
 }