| Total Complexity | 3 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class Typo3 |
||
| 21 | extends \Aimeos\MShop\Customer\Manager\Property\Standard |
||
| 22 | implements \Aimeos\MShop\Customer\Manager\Property\Iface |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * Returns a new manager for customer extensions |
||
| 26 | * |
||
| 27 | * @param string $manager Name of the sub manager type in lower case |
||
| 28 | * @param string|null $name Name of the implementation, will be from configuration (or Default) if null |
||
| 29 | * @return mixed Manager for different extensions, e.g stock, tags, locations, etc. |
||
| 30 | */ |
||
| 31 | public function getSubManager( string $manager, ?string $name = null ) : \Aimeos\MShop\Common\Manager\Iface |
||
| 34 | } |
||
| 35 | |||
| 36 | |||
| 37 | /** |
||
| 38 | * Returns the name of the used table |
||
| 39 | * |
||
| 40 | * @return string Table name |
||
| 41 | */ |
||
| 42 | protected function table() : string |
||
| 47 |