a52e4928148f084471f31e7b0c381c3db8485f1a
[yaffs-website] / vendor / league / container / src / Argument / RawArgument.php
1 <?php
2
3 namespace League\Container\Argument;
4
5 class RawArgument implements RawArgumentInterface
6 {
7     /**
8      * @var mixed
9      */
10     protected $value;
11
12     /**
13      * {@inheritdoc}
14      */
15     public function __construct($value)
16     {
17         $this->value = $value;
18     }
19
20     /**
21      * {@inheritdoc}
22      */
23     public function getValue()
24     {
25         return $this->value;
26     }
27 }