| Total Complexity | 3 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class RawDefinition implements Definition, Shareable, CallableMethod, Taggable |
||
| 17 | { |
||
| 18 | use IdentifiableTrait; |
||
| 19 | use ShareableTrait; |
||
| 20 | use CallableMethodTrait; |
||
| 21 | use TaggableTrait; |
||
| 22 | |||
| 23 | /** @var mixed */ |
||
| 24 | protected $value; |
||
| 25 | |||
| 26 | public function __construct($value) |
||
| 27 | { |
||
| 28 | $this->value = $value; |
||
| 29 | } |
||
| 30 | |||
| 31 | public function getValue() |
||
| 34 | } |
||
| 35 | |||
| 36 | public function getConcrete(ContainerInterface $container) |
||
| 39 | } |
||
| 40 | } |
||
| 41 |