Passed
Push — master ( cf066d...0d7181 )
by Anton
02:03
created
migrations/2018_09_24_001000_create_sense_request_summaries_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      */
25 25
     public function up(): void
26 26
     {
27
-        Schema::create('sense_request_summaries', function (Blueprint $table) {
27
+        Schema::create('sense_request_summaries', function(Blueprint $table) {
28 28
             $table->bigIncrements('id');
29 29
             $table->uuid('request_id');
30 30
             $table->string('method');
Please login to merge, or discard this patch.
database/migrations/2018_09_24_002000_create_sense_statements_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     public function up(): void
27 27
     {
28
-        Schema::create('sense_statements', function (Blueprint $table) {
28
+        Schema::create('sense_statements', function(Blueprint $table) {
29 29
             $table->bigIncrements('id');
30 30
             $table->mediumText('value');
31 31
             $table->timestamps();
Please login to merge, or discard this patch.
migrations/2018_09_24_003000_create_sense_statement_summaries_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      */
25 25
     public function up(): void
26 26
     {
27
-        Schema::create('sense_statement_summaries', function (Blueprint $table) {
27
+        Schema::create('sense_statement_summaries', function(Blueprint $table) {
28 28
             $table->bigIncrements('id');
29 29
             $table->char('request_id', 36);
30 30
             $table->unsignedBigInteger('statement_id');
Please login to merge, or discard this patch.
src/Authentication/Services/Authenticator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public static function check(Request $request): bool
35 35
     {
36
-        return (static::$using ?: function () {
36
+        return (static::$using ?: function() {
37 37
             return app()->environment('local');
38 38
         })($request);
39 39
     }
Please login to merge, or discard this patch.
src/Providers/SenseServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
             'prefix' => config('sense.uri', 'sense'),
62 62
             'namespace' => 'Cog\Laravel\Sense\Http\Controllers',
63 63
             'middleware' => config('sense.middleware', 'web'),
64
-        ], function () {
64
+        ], function() {
65 65
             $this->loadRoutesFrom(__DIR__ . '/../../routes/web.php');
66 66
         });
67 67
     }
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
             // TODO: Add body
128 128
         ]);
129 129
 
130
-        DB::listen(function (QueryExecuted $query) use ($requestId, $requestSummary) {
130
+        DB::listen(function(QueryExecuted $query) use ($requestId, $requestSummary) {
131 131
             if ($this->isQueryShouldBeStored($query)) {
132 132
                 $this->storeStatement($requestId, $query);
133 133
                 $this->updateRequestSummary($requestSummary, $query);
Please login to merge, or discard this patch.