30 lines
440 B
PHP
30 lines
440 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Services\ImageService;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class ImageServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->app->bind(ImageService::class);
|
|
}
|
|
|
|
/**
|
|
* Bootstrap services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
//
|
|
}
|
|
}
|