Skip to content

Commit

Permalink
Remove install command
Browse files Browse the repository at this point in the history
  • Loading branch information
mzur committed Jun 22, 2020
1 parent 9c75b01 commit 7a2bbd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 50 deletions.
9 changes: 2 additions & 7 deletions src/ColorSortServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Biigle\Modules\ColorSort;

use Illuminate\Support\ServiceProvider;
use Illuminate\Routing\Router;
use Biigle\Services\Modules;
use Illuminate\Routing\Router;
use Illuminate\Support\ServiceProvider;

class ColorSortServiceProvider extends ServiceProvider
{
Expand Down Expand Up @@ -62,10 +62,6 @@ public function register()
$this->mergeConfigFrom(__DIR__.'/config/color_sort.php', 'color_sort');

// set up the console commands
$this->app->singleton('command.color-sort.install', function ($app) {
return new \Biigle\Modules\ColorSort\Console\Commands\Install();
});
$this->commands('command.color-sort.install');
$this->app->singleton('command.color-sort.publish', function ($app) {
return new \Biigle\Modules\ColorSort\Console\Commands\Publish();
});
Expand All @@ -80,7 +76,6 @@ public function register()
public function provides()
{
return [
'command.color-sort.install',
'command.color-sort.publish',
];
}
Expand Down
43 changes: 0 additions & 43 deletions src/Console/Commands/Install.php

This file was deleted.

0 comments on commit 7a2bbd8

Please sign in to comment.