Completed
Pull Request — master (#95)
by
unknown
03:34
created
app/Ship/Engine/Loaders/MiddlewaresLoaderTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
app/Containers/Debugger/Tasks/QueryDebuggerTask.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,6 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
app/Containers/Stripe/Tests/Unit/ChargeUsersTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
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
 /**
Please login to merge, or discard this patch.
app/Ship/Features/Payment/Proxies/PaymentsProxy.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
47 47
     }
48 48
 
49 49
     /**
50
-     * @param $object
50
+     * @param ChargeableInterface $object
51 51
      *
52 52
      * @return  null
53 53
      */
Please login to merge, or discard this patch.