Skip to content

Commit

Permalink
Added commands for make* reports (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
kchapple committed Mar 29, 2021
1 parent 8aa66c7 commit 551557b
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions src/ZermeloServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,21 @@

namespace CareSet\Zermelo;

use CareSet\Zermelo\Console\MakeGraphReportCommand;
use CareSet\Zermelo\Console\MakeTabularReportCommand;
use CareSet\Zermelo\Console\ZermeloDebugCommand;
use CareSet\Zermelo\Console\ZermeloInstallCommand;
use CareSet\Zermelo\Console\ZermeloMakeDemoCommand;
use CareSet\Zermelo\Console\MakeCardsReportCommand;
use CareSet\Zermelo\Console\ZermeloReportCheckCommand;
use CareSet\Zermelo\Models\ZermeloDatabase;
use CareSet\Zermelo\Services\SocketService;
use CareSet\Zermelo\Console\ZermeloBladeCardInstallCommand;
use CareSet\Zermelo\Console\ZermeloBladeGraphInstallCommand;
use CareSet\Zermelo\Console\ZermeloBladeTabularInstallCommand;
use CareSet\Zermelo\Console\ZermeloBladeTreeCardInstallCommand;
use Illuminate\Routing\Router;
use Illuminate\Support\Facades\Config;
use Illuminate\Support\Facades\File;
use Illuminate\Support\Facades\Route;

Class ZermeloServiceProvider extends \Illuminate\Support\ServiceProvider
{
protected function presentations()
{
return [];
}

/*
* Registration happens before boot, so this is where we gather static configuration
* and register things to be used later.
Expand All @@ -43,6 +35,9 @@ public function register()
ZermeloInstallCommand::class,
ZermeloDebugCommand::class,
ZermeloReportCheckCommand::class,
MakeTabularReportCommand::class,
MakeCardsReportCommand::class,
MakeGraphReportCommand::class
]);

/*
Expand Down

0 comments on commit 551557b

Please sign in to comment.