49 lines
858 B
PHP
49 lines
858 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Imagify\Picture;
|
|
|
|
use Imagify\Dependencies\League\Container\ServiceProvider\AbstractServiceProvider;
|
|
|
|
/**
|
|
* Service provider for Picture display
|
|
*/
|
|
class ServiceProvider extends AbstractServiceProvider {
|
|
/**
|
|
* Services provided by this provider
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $provides = [
|
|
'picture_display',
|
|
];
|
|
|
|
/**
|
|
* Subscribers provided by this provider
|
|
*
|
|
* @var array
|
|
*/
|
|
public $subscribers = [
|
|
'picture_display',
|
|
];
|
|
|
|
/**
|
|
* Registers the provided classes
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register() {
|
|
$this->getContainer()->share( 'picture_display', Display::class )
|
|
->addArgument( $this->getContainer()->get( 'filesystem' ) );
|
|
}
|
|
|
|
/**
|
|
* Returns the subscribers array
|
|
*
|
|
* @return array
|
|
*/
|
|
public function get_subscribers() {
|
|
return $this->subscribers;
|
|
}
|
|
}
|