1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- /* vim: set expandtab sw=4 ts=4 sts=4: */
- /**
- * Holds the PMA\DI\ValueItem class
- *
- * @package PMA
- */
- namespace PMA\DI;
- require_once 'libraries/di/Item.int.php';
- /**
- * Value manager
- *
- * @package PMA\DI
- */
- class ValueItem implements Item
- {
- /** @var mixed */
- protected $value;
- /**
- * Constructor
- *
- * @param mixed $value Value
- */
- public function __construct($value)
- {
- $this->value = $value;
- }
- /**
- * Get the value
- *
- * @param array $params Parameters
- * @return mixed
- */
- public function get($params = array())
- {
- return $this->value;
- }
- }
|