mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-01-26 11:44:11 +00:00
Register Sync command
This commit is contained in:
20
src/DataSyncBaseServiceProvider.php
Normal file
20
src/DataSyncBaseServiceProvider.php
Normal 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,
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user