init web ems all
This commit is contained in:
29
phpMyAdmin/libraries/classes/Di/FactoryItem.php
Executable file
29
phpMyAdmin/libraries/classes/Di/FactoryItem.php
Executable file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||||
/**
|
||||
* Holds the PhpMyAdmin\Di\FactoryItem class
|
||||
*
|
||||
* @package PhpMyAdmin\Di
|
||||
*/
|
||||
namespace PhpMyAdmin\Di;
|
||||
|
||||
/**
|
||||
* Factory manager
|
||||
*
|
||||
* @package PhpMyAdmin\Di
|
||||
*/
|
||||
class FactoryItem extends ReflectorItem
|
||||
{
|
||||
|
||||
/**
|
||||
* Construct an instance
|
||||
*
|
||||
* @param array $params Parameters
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function get(array $params = array())
|
||||
{
|
||||
return $this->invoke($params);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user