This commit is contained in:
2024-08-24 19:57:17 +03:00
parent 0e5ac08641
commit 7b10bfca1d
5 changed files with 2 additions and 46 deletions
-6
View File
@@ -12,7 +12,6 @@ use Lucent\Commands\CompileSchemas;
use Lucent\Commands\LiveLink;
use Lucent\Commands\RebuildThumbnails;
use Lucent\Commands\RemoveOrphanEdges;
use Lucent\Event\Dispatcher;
use Lucent\File\FileService;
use Lucent\File\ImageService;
use Lucent\Query\DatabaseGraph\DatabaseGraph;
@@ -30,10 +29,6 @@ class LucentServiceProvider extends ServiceProvider
return ChannelService::fromConfig();
});
$this->app->singleton(Dispatcher::class, function () {
return new Dispatcher();
});
$this->app->bind(ImageManager::class, function () {
return new ImageManager(['driver' => 'imagick']);
});
@@ -45,7 +40,6 @@ class LucentServiceProvider extends ServiceProvider
};
});
$this->app->register(LucentEventServiceProvider::class);
}