示例#1
0
	protected function notifyRequestComplete(Request $request) {
		$request->notifyIsComplete($this);
		$this->callbacks->onRequestComplete($request, $this);
	}
 protected function notifyRequestComplete(Request $request)
 {
     $request->notifyIsComplete($this);
     /** @noinspection PhpUndefinedMethodInspection */
     $this->callbacks->onRequestComplete($request, $this);
 }
 public function notifyRequestIsComplete(Request $request, Handler $mrHandler)
 {
     $this->lastRequest = $request;
     $this->callbacks->onRequestComplete($request, $this, $mrHandler);
 }