1 | <?php |
||
16 | class AddHashToHistory implements DeltaInterface |
||
17 | { |
||
18 | /** |
||
19 | * Database. |
||
20 | * |
||
21 | * @var Database |
||
22 | */ |
||
23 | protected $db; |
||
24 | |||
25 | /** |
||
26 | * Construct. |
||
27 | * |
||
28 | * @param Database $db |
||
29 | */ |
||
30 | public function __construct(Database $db) |
||
34 | |||
35 | /** |
||
36 | * Start. |
||
37 | * |
||
38 | * @return bool |
||
39 | */ |
||
40 | public function start(): bool |
||
75 | } |
||
76 |