@@ -30,7 +30,7 @@ |
||
30 | 30 | private function registerMiddlewareGroups(array $middlewareGroups = []) |
31 | 31 | { |
32 | 32 | foreach ($middlewareGroups as $key => $middleware) { |
33 | - if($middleware){ |
|
33 | + if ($middleware) { |
|
34 | 34 | $this->app['router']->middlewareGroup($key, $middleware); |
35 | 35 | } |
36 | 36 | } |
@@ -19,7 +19,6 @@ |
||
19 | 19 | * Write the DB queries in the Log and Display them in the |
20 | 20 | * terminal (in case you want to see them while executing the tests). |
21 | 21 | * |
22 | - * @param bool|false $terminal |
|
23 | 22 | */ |
24 | 23 | public function run() |
25 | 24 | { |
@@ -30,7 +30,7 @@ |
||
30 | 30 | $consoleOutputEnabled = Config::get('debugger.queries.output.console'); |
31 | 31 | $logOutputEnabled = Config::get('debugger.queries.output.log'); |
32 | 32 | |
33 | - DB::listen(function ($event) use ($consoleOutputEnabled, $logOutputEnabled) { |
|
33 | + DB::listen(function($event) use ($consoleOutputEnabled, $logOutputEnabled) { |
|
34 | 34 | $fullQuery = vsprintf(str_replace(['%', '?'], ['%%', '%s'], $event->sql), $event->bindings); |
35 | 35 | |
36 | 36 | $result = $event->connectionName . ' (' . $event->time . '): ' . $fullQuery; |
@@ -5,7 +5,6 @@ |
||
5 | 5 | use App\Containers\Stripe\Tasks\CreateStripeAccountObjectTask; |
6 | 6 | use App\Containers\Stripe\Tasks\ChargeWithStripeTask; |
7 | 7 | use App\Containers\Stripe\Tests\TestCase; |
8 | -use App\Ship\Features\Payment\Proxies\PaymentsProxy; |
|
9 | 8 | use Illuminate\Support\Facades\App; |
10 | 9 | |
11 | 10 | /** |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | } |
38 | 38 | |
39 | 39 | /** |
40 | - * @param $object |
|
40 | + * @param ChargeableInterface $object |
|
41 | 41 | * |
42 | 42 | * @return null |
43 | 43 | */ |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | } |
48 | 48 | |
49 | 49 | /** |
50 | - * @param $object |
|
50 | + * @param ChargeableInterface $object |
|
51 | 51 | * |
52 | 52 | * @return null |
53 | 53 | */ |