Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
47 | public function add(MiddlewareInterface $middleware):QueueDispatcher{ |
||
48 | |||
49 | if(!$middleware instanceof PriorityMiddlewareInterface){ |
||
50 | $middleware = new PriorityMiddleware($middleware); |
||
51 | } |
||
52 | |||
53 | $this->middlewareStack[] = $middleware; |
||
54 | |||
55 | $this->sortMiddleware(); |
||
56 | |||
57 | return $this; |
||
58 | } |
||
71 |