Modifs cache

This commit is contained in:
2017-10-11 17:20:42 +02:00
parent ed9f373f4f
commit a1dea266c8
4 changed files with 48 additions and 53 deletions

View File

@@ -20,7 +20,7 @@ class ImagesServiceProvider extends ServiceProvider
require_once __DIR__ . '/../functions.php';
$this->loadMigrationsFrom(__DIR__ . '/../../database/migrations');
$this->mergeConfigFrom(__DIR__ . '/../../config/image.php', 'images');
$this->mergeConfigFrom(__DIR__ . '/../../config/image.php', 'image');
$this->app->register(ImageServiceProvider::class);
@@ -34,8 +34,8 @@ class ImagesServiceProvider extends ServiceProvider
]);
$this->commands([
// CacheGarbageCollectorCommand::class,
// RemoveUselessPicturesCommand::class,
CacheGarbageCollectorCommand::class,
RemoveUselessPicturesCommand::class,
]);
}
}