| Total Complexity | 3 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | class Shop |
||
| 22 | { |
||
| 23 | private $container; |
||
|
|
|||
| 24 | private $context; |
||
| 25 | private $objects = []; |
||
| 26 | |||
| 27 | |||
| 28 | /** |
||
| 29 | * Initializes the shop object |
||
| 30 | * |
||
| 31 | * @param Container $container Container object to access parameters |
||
| 32 | */ |
||
| 33 | public function __construct( Container $container ) |
||
| 42 | } |
||
| 43 | |||
| 44 | |||
| 45 | /** |
||
| 46 | * Returns the HTML client for the given name |
||
| 47 | * |
||
| 48 | * @param string $name Name of the shop component |
||
| 49 | * @return \Aimeos\Client\Html\Iface HTML client |
||
| 50 | */ |
||
| 51 | public function get( $name ) |
||
| 65 |