@@ -18,7 +18,7 @@ |
||
| 18 | 18 | } |
| 19 | 19 | |
| 20 | 20 | /** |
| 21 | - * @return int |
|
| 21 | + * @return string |
|
| 22 | 22 | */ |
| 23 | 23 | public function toNative() |
| 24 | 24 | { |
@@ -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 | /** |