| 1 | <?php | ||
| 20 | final class BeginMiddleware implements SimpleMiddlewareInterface, SendsMiddlewareSignal | ||
| 21 | { | ||
| 22 | use StateMiddlewareDependencyTrait; | ||
| 23 | |||
| 24 | /** | ||
| 25 | * This is the first middleware being called, it will send a signal to all | ||
| 26 | * middlewares that depend on it. | ||
| 27 | */ | ||
| 28 | public function execute() | ||
| 32 | |||
| 33 | /** | ||
| 34 | * @return string | ||
| 35 | */ | ||
| 36 | public function getSignalName() | ||
| 40 | } | ||
| 41 |