1 | <?php |
||
9 | class TariffManagerFactory |
||
10 | { |
||
11 | /** |
||
12 | * @param integer $id Tariff ID |
||
13 | * @return TariffManager|object |
||
14 | * @throws NotFoundHttpException |
||
15 | */ |
||
16 | public static function createById($id) |
||
26 | |||
27 | /** |
||
28 | * @param string $type Tariff type |
||
29 | * @return \hipanel\modules\finance\logic\TariffManager|object |
||
30 | */ |
||
31 | public static function createByType($type) |
||
35 | |||
36 | /** |
||
37 | * @param string $type Tariff type |
||
38 | * @return string |
||
39 | */ |
||
40 | protected static function buildClassName($type) |
||
44 | } |
||
45 |