phpmyadmin/libraries/di/ValueItem.class.php
Dan Ungureanu cb9cc68fe9 Fixed more issues.
Signed-off-by: Dan Ungureanu <udan1107@gmail.com>
2015-07-25 19:39:33 +03:00

45 lines
650 B
PHP

<?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;
}
}