1 | <?php |
||
11 | class DBALPurgeService implements PurgeServiceInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var Connection |
||
15 | */ |
||
16 | private $connection; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | private $tableName; |
||
22 | |||
23 | /** |
||
24 | * DBALPurgeService constructor. |
||
25 | * @param Connection $connection |
||
26 | * @param string $tableName |
||
27 | */ |
||
28 | public function __construct( |
||
36 | |||
37 | public function purgeAll() |
||
42 | } |
||
43 |