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
Push — master ( 45169b...4f7bcf )
by Jose Luis
02:55
created
src/Providers/LaravelTacticianServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,19 +28,19 @@
 block discarded – undo
28 28
         $this->app->bind('Joselfonseca\LaravelTactician\CommandBusInterface', config('laravel-tactician.bus'));
29 29
 
30 30
         // Register Command Generator
31
-        $this->app->singleton('laravel-tactician.make.command', function ($app) {
31
+        $this->app->singleton('laravel-tactician.make.command', function($app) {
32 32
             return new MakeTacticianCommandCommand($app['files']);
33 33
         });
34 34
         $this->commands('laravel-tactician.make.command');
35 35
 
36 36
         // Register Handler Generator
37
-        $this->app->singleton('laravel-tactician.make.handler', function ($app) {
37
+        $this->app->singleton('laravel-tactician.make.handler', function($app) {
38 38
             return new MakeTacticianHandlerCommand($app['files']);
39 39
         });
40 40
         $this->commands('laravel-tactician.make.handler');
41 41
 
42 42
         // Register Comman+Handler Generator Command
43
-        $this->app->singleton('laravel-tactician.make.tactician', function () {
43
+        $this->app->singleton('laravel-tactician.make.tactician', function() {
44 44
             return new MakeTacticianCommand();
45 45
         });
46 46
         $this->commands('laravel-tactician.make.tactician');
Please login to merge, or discard this patch.
config/sami.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-$dir = __DIR__ . '/../src';
3
+$dir = __DIR__.'/../src';
4 4
 
5 5
 $iterator = Symfony\Component\Finder\Finder::create()
6 6
     ->files()
@@ -10,8 +10,8 @@  discard block
 block discarded – undo
10 10
 $options = [
11 11
     'theme'                => 'default',
12 12
     'title'                => 'Laravel Tactician API Documentation',
13
-    'build_dir'            => __DIR__ . '/../build/laravelTactician',
14
-    'cache_dir'            => __DIR__ . '/../cache/laravelTactician',
13
+    'build_dir'            => __DIR__.'/../build/laravelTactician',
14
+    'cache_dir'            => __DIR__.'/../cache/laravelTactician',
15 15
 ];
16 16
 
17 17
 $sami = new Sami\Sami($iterator, $options);
Please login to merge, or discard this patch.