GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — rewrite-laravel (#14)
by Oliver
06:15 queued 03:03
created
tests/Feature/MmexClient/TransactionTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@
 block discarded – undo
159 159
                     'Payee'       => $transaction->payee_name,
160 160
                     'Category'    => $transaction->category_name,
161 161
                     'SubCategory' => $transaction->sub_category_name,
162
-                    'Amount'      => (string) $transaction->amount,
162
+                    'Amount'      => (string)$transaction->amount,
163 163
                     'Notes'       => $transaction->notes,
164 164
                     'Attachments' => 'Transaction_'.$transaction->id.'_test-receipt.png;Transaction_'.$transaction->id
165 165
                         .'_test-receipt-2.png;Transaction_'.$transaction->id.'_test-receipt-3.png',
Please login to merge, or discard this patch.
app/Services/Mmex/ClientApiService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
             $categoryName = $payee->DefCateg;
50 50
             $subCategoryName = $payee->DefSubCateg;
51 51
 
52
-            $category = Category::where('name', $subCategoryName)->whereHas('parentCategory', function ($query) use ($categoryName) {
52
+            $category = Category::where('name', $subCategoryName)->whereHas('parentCategory', function($query) use ($categoryName) {
53 53
                 $query->where('name', $categoryName);
54 54
             })->first();
55 55
 
Please login to merge, or discard this patch.
database/migrations/2017_06_15_075047_create_settings_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('settings', function (Blueprint $table) {
16
+        Schema::create('settings', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('scope');
19 19
             $table->json('data');
Please login to merge, or discard this patch.
tests/Feature/TestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 
21 21
         parent::setUp();
22 22
 
23
-        $this->setUpDatabase(function () {
23
+        $this->setUpDatabase(function() {
24 24
             $this->artisan('db:seed', ['--class' => UsersTableSeeder::class]);
25 25
         });
26 26
 
Please login to merge, or discard this patch.
routes/web.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,6 +19,6 @@
 block discarded – undo
19 19
 Route::get('settings', 'SettingController@index');
20 20
 Route::post('settings', 'SettingController@update');
21 21
 
22
-Route::group(['prefix' => '/admin'], function () {
22
+Route::group(['prefix' => '/admin'], function() {
23 23
     Route::get('logs', '\Rap2hpoutre\LaravelLogViewer\LogViewerController@index');
24 24
 });
Please login to merge, or discard this patch.
routes/api.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
 
16 16
 Route::any('services.php', 'MmexController@handle')->middleware('ensureguid');
17 17
 
18
-Route::group(['prefix' => 'api/v1'], function () {
19
-    Route::get('/user', function (Request $request) {
18
+Route::group(['prefix' => 'api/v1'], function() {
19
+    Route::get('/user', function(Request $request) {
20 20
         return $request->user();
21 21
     })->middleware('auth:api');
22 22
 
Please login to merge, or discard this patch.
tests/UsesDatabase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
             $database->connection($name)->beginTransaction();
51 51
         }
52 52
 
53
-        $this->beforeApplicationDestroyed(function () use ($database) {
53
+        $this->beforeApplicationDestroyed(function() use ($database) {
54 54
             foreach ($this->connectionsToTransact() as $name) {
55 55
                 $database->connection($name)->rollBack();
56 56
             }
Please login to merge, or discard this patch.
app/Transformers/Mmex/TransactionTransformer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,10 +27,10 @@
 block discarded – undo
27 27
             'Payee'       => $item->payee_name,
28 28
             'Category'    => $item->category_name,
29 29
             'SubCategory' => $item->sub_category_name,
30
-            'Amount'      => (string) floatval($item->amount),
30
+            'Amount'      => (string)floatval($item->amount),
31 31
             'Notes'       => $item->notes,
32 32
             'Attachments' => $item->getMedia('attachments')
33
-                ->map(function (Media $mediaItem) {
33
+                ->map(function(Media $mediaItem) {
34 34
                     return $mediaItem->file_name;
35 35
                 })->implode(';'), ];
36 36
     }
Please login to merge, or discard this patch.