1 | <?php |
||
10 | class AbstractDetection implements DetectionInterface |
||
11 | { |
||
12 | /** |
||
13 | * Pool name. |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | private $poolName; |
||
18 | |||
19 | /** |
||
20 | * Class constructor. |
||
21 | * |
||
22 | * @param string $poolName |
||
23 | */ |
||
24 | 23 | public function __construct($poolName) |
|
28 | |||
29 | /** |
||
30 | * Get pool name. |
||
31 | * |
||
32 | * @return string |
||
33 | */ |
||
34 | 23 | public function getPoolName() |
|
38 | } |
||
39 |