| 1 | <?php |
||
| 22 | class ClassMapHelper |
||
| 23 | { |
||
| 24 | protected $map = []; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * ModelClassMapHelper constructor. |
||
| 28 | * |
||
| 29 | * @param array $map |
||
| 30 | */ |
||
| 31 | 10 | public function __construct($map = []) |
|
| 35 | |||
| 36 | /** |
||
| 37 | * @param $key |
||
| 38 | * @param $class |
||
| 39 | */ |
||
| 40 | public function set($key, $class) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @param $key |
||
| 47 | * |
||
| 48 | * @throws \Exception |
||
| 49 | * @return mixed |
||
| 50 | * |
||
| 51 | */ |
||
| 52 | 10 | public function get($key) |
|
| 59 | } |
||
| 60 |