| 1 | <?php |
||
| 9 | class InheritanceMiddleware implements Middleware |
||
| 10 | { |
||
| 11 | use MiddlewareCommon; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Get config for a class |
||
| 15 | * |
||
| 16 | * @param string $class Name of class |
||
| 17 | * @param int|true $excludeMiddleware Middleware disable flags |
||
| 18 | * @param callable $next Callback to next middleware |
||
| 19 | * @return array Complete class config |
||
| 20 | */ |
||
| 21 | public function getClassConfig($class, $excludeMiddleware, $next) |
||
| 36 | } |
||
| 37 |