add wp-rocket
This commit is contained in:
@@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
namespace WP_Rocket\Engine\Container\Definition;
|
||||
|
||||
use WP_Rocket\Engine\Container\Argument\ArgumentResolverInterface;
|
||||
use WP_Rocket\Engine\Container\Argument\ArgumentResolverTrait;
|
||||
use WP_Rocket\Engine\Container\ImmutableContainerAwareTrait;
|
||||
|
||||
abstract class AbstractDefinition implements ArgumentResolverInterface, DefinitionInterface
|
||||
{
|
||||
use ArgumentResolverTrait;
|
||||
use ImmutableContainerAwareTrait;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $alias;
|
||||
|
||||
/**
|
||||
* @var mixed
|
||||
*/
|
||||
protected $concrete;
|
||||
|
||||
/**
|
||||
* @var array
|
||||
*/
|
||||
protected $arguments = [];
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*
|
||||
* @param string $alias
|
||||
* @param mixed $concrete
|
||||
*/
|
||||
public function __construct($alias, $concrete)
|
||||
{
|
||||
$this->alias = $alias;
|
||||
$this->concrete = $concrete;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function withArgument($arg)
|
||||
{
|
||||
$this->arguments[] = $arg;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function withArguments(array $args)
|
||||
{
|
||||
foreach ($args as $arg) {
|
||||
$this->withArgument($arg);
|
||||
}
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user