예제 #1
0
 /**
  * To push in the caller stated classes name stack
  * the class of the current object.
  *
  * @param StateInterface $state
  *
  * @return ProxyInterface
  */
 private function pushCallerStatedClassName(StateInterface $state) : ProxyInterface
 {
     $this->callerStatedClassesStack->push($state->getStatedClassName());
     return $this;
 }