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