| 1 | <?php |
||
| 27 | class ModelLayerPooler extends ClientPooler |
||
| 28 | { |
||
| 29 | /** |
||
| 30 | * getPoolerType |
||
| 31 | * |
||
| 32 | * @see ClientPoolerInterface |
||
| 33 | */ |
||
| 34 | public function getPoolerType() |
||
| 35 | { |
||
| 36 | return 'model_layer'; |
||
| 37 | } |
||
| 38 | |||
| 39 | /** |
||
| 40 | * createClient |
||
| 41 | * |
||
| 42 | * @see ClientPooler |
||
| 43 | * @return ModelLayer |
||
| 44 | * @throws ModelLayerException |
||
| 45 | */ |
||
| 46 | protected function createClient($identifier) |
||
| 59 | } |
||
| 60 |