phpmyadmin/libraries/di/ServiceItem.class.php
Hugues Peccatte 829a52cfa4 Remove useless constructors.
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
2015-09-26 23:16:51 +02:00

38 lines
634 B
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Holds the PMA\DI\ServiceItem class
*
* @package PMA
*/
namespace PMA\DI;
require_once 'libraries/di/ReflectorItem.class.php';
/**
* Service manager
*
* @package PMA\DI
*/
class ServiceItem extends ReflectorItem
{
/** @var mixed */
protected $instance;
/**
* Get the instance of the service
*
* @param array $params Parameters
* @return mixed
*/
public function get($params = array())
{
if (!isset($this->instance)) {
$this->instance = $this->invoke();
}
return $this->instance;
}
}