1 | <?php |
||
10 | class AdapterFactory { |
||
11 | |||
12 | const COLLECTION_ADAPTER = 'collection'; |
||
13 | const PAGINATION_ADAPTER = 'pagination'; |
||
14 | |||
15 | private $adapters; |
||
16 | |||
17 | /** |
||
18 | * @param $type |
||
19 | * |
||
20 | * @return Adapter |
||
21 | * |
||
22 | * @throws UnknownAdapterException |
||
23 | */ |
||
24 | public function getByType($type) { |
||
48 | |||
49 | } |
||
50 |