Skip to content
This repository has been archived by the owner on Mar 1, 2023. It is now read-only.

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
romm committed Aug 2, 2017
1 parent 1a90948 commit 9fb251c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Classes/Middleware/Item/AbstractMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ protected function initializeMiddleware()
* @param string $signal
* @return SignalObject
*/
final protected function beforeSignal($signal = null)
final public function beforeSignal($signal = null)
{
return $this->getSignalObject($signal, Before::class);
}
Expand All @@ -109,7 +109,7 @@ final protected function beforeSignal($signal = null)
* @param string $signal
* @return SignalObject
*/
final protected function afterSignal($signal = null)
final public function afterSignal($signal = null)
{
return $this->getSignalObject($signal, After::class);
}
Expand Down

0 comments on commit 9fb251c

Please sign in to comment.