28 lines
514 B
PHP
28 lines
514 B
PHP
<?php
|
|
|
|
namespace WP_Rocket\Engine\Container\ServiceProvider;
|
|
|
|
use WP_Rocket\Engine\Container\ContainerAwareTrait;
|
|
|
|
abstract class AbstractServiceProvider implements ServiceProviderInterface
|
|
{
|
|
use ContainerAwareTrait;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $provides = [];
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function provides($alias = null)
|
|
{
|
|
if (! is_null($alias)) {
|
|
return (in_array($alias, $this->provides));
|
|
}
|
|
|
|
return $this->provides;
|
|
}
|
|
}
|