add wp-rocket
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user