@@ -28,19 +28,19 @@ |
||
| 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'); |
@@ -1,6 +1,6 @@ discard block |
||
| 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 |
||
| 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); |