Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 0208026

Browse files
committed
Remove deprecated DispatchListener::marshallControllerNotFoundEvent method
1 parent ea0f1dd commit 0208026

File tree

1 file changed

+0
-27
lines changed

1 file changed

+0
-27
lines changed

src/DispatchListener.php

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -193,33 +193,6 @@ protected function marshalControllerNotFoundEvent(
193193
return $return;
194194
}
195195

196-
/**
197-
* Marshal a controller not found exception event
198-
*
199-
* @deprecated Use marshalControllerNotFoundEvent() instead
200-
* @param string $type
201-
* @param string $controllerName
202-
* @param MvcEvent $event
203-
* @param Application $application
204-
* @param \Exception $exception
205-
* @return mixed
206-
*/
207-
protected function marshallControllerNotFoundEvent(
208-
$type,
209-
$controllerName,
210-
MvcEvent $event,
211-
Application $application,
212-
\Exception $exception = null
213-
) {
214-
trigger_error(sprintf(
215-
'%s is deprecated; please use %s::marshalControllerNotFoundEvent instead',
216-
__METHOD__,
217-
__CLASS__
218-
), E_USER_DEPRECATED);
219-
220-
return $this->marshalControllerNotFoundEvent($type, $controllerName, $event, $application, $exception);
221-
}
222-
223196
/**
224197
* Marshal a bad controller exception event
225198
*

0 commit comments

Comments
 (0)