add set scheduling api
This commit is contained in:
parent
bdb266746d
commit
98ae9bf088
20 changed files with 935 additions and 1 deletions
|
|
@ -20,6 +20,8 @@ use App\Element\ElementRepository;
|
|||
use App\Element\EloquentElementRepository;
|
||||
use App\Set\EloquentSetRepository;
|
||||
use App\Set\SetRepository;
|
||||
use App\Schedule\EloquentScheduleRepository;
|
||||
use App\Schedule\ScheduleRepository;
|
||||
use App\User\EloquentUserRepository;
|
||||
use App\User\UserRepository;
|
||||
use Carbon\CarbonImmutable;
|
||||
|
|
@ -57,6 +59,10 @@ class AppServiceProvider extends ServiceProvider
|
|||
ElementRepository::class,
|
||||
EloquentElementRepository::class,
|
||||
);
|
||||
$this->app->bind(
|
||||
ScheduleRepository::class,
|
||||
EloquentScheduleRepository::class,
|
||||
);
|
||||
$this->app->bind(PasswordHasher::class, BcryptPasswordHasher::class);
|
||||
$this->app->bind(TokenGenerator::class, RandomTokenGenerator::class);
|
||||
$this->app->bind(Clock::class, SystemClock::class);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue