Register Sync command

This commit is contained in:
Jani Gyllenberg
2019-01-22 21:31:18 -05:00
parent be8c9d781a
commit db6984da39

View File

@@ -0,0 +1,20 @@
<?php
namespace distinctm\LaravelDataSync;
use Illuminate\Support\ServiceProvider;
class DataSyncBaseServiceProvider extends ServiceProvider
{
public function boot()
{
}
public function register()
{
$this->commands([
Console\Commands\Sync::class,
]);
}
}