@@ -63,7 +63,7 @@ |
||
| 63 | 63 | } |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | - return $responses ? : null; |
|
| 66 | + return $responses ?: null; |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | return $this->buildResponse( |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | */ |
| 27 | 27 | public function __construct(BooBooRunner $boobooRunner = null) |
| 28 | 28 | { |
| 29 | - $this->boobooRunner = $boobooRunner ? : new BooBooRunner([new JsonFormatter(true)]); |
|
| 29 | + $this->boobooRunner = $boobooRunner ?: new BooBooRunner([new JsonFormatter(true)]); |
|
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | /** |