예제 #1
0
 /**
  * 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;
 }