Ejemplo n.º 1
0
	protected function notifyRequestComplete(Request $request) {
		$request->notifyIsComplete($this);
		$this->callbacks->onRequestComplete($request, $this);
	}
Ejemplo n.º 2
0
 protected function notifyRequestComplete(Request $request)
 {
     $request->notifyIsComplete($this);
     /** @noinspection PhpUndefinedMethodInspection */
     $this->callbacks->onRequestComplete($request, $this);
 }
Ejemplo n.º 3
0
 public function notifyRequestIsComplete(Request $request, Handler $mrHandler)
 {
     $this->lastRequest = $request;
     $this->callbacks->onRequestComplete($request, $this, $mrHandler);
 }