1 | <?php |
||
13 | abstract class AdapterAbstract |
||
14 | { |
||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $fileName; |
||
19 | |||
20 | /** |
||
21 | * PdoSqlite constructor. |
||
22 | * |
||
23 | * @param string $fileName |
||
24 | */ |
||
25 | public function __construct(string $fileName) |
||
29 | |||
30 | /** |
||
31 | * @return string |
||
32 | */ |
||
33 | protected function getFileName() : string |
||
37 | |||
38 | /** |
||
39 | * @param string $fileName |
||
40 | */ |
||
41 | protected function setFileName(string $fileName) |
||
45 | } |
||
46 |