PluginProbe
Disk Usage Insights / 1.9
Disk Usage Insights v1.9
trunk 1.0 1.10 1.11 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9
← All changes | src/Domain/SnapshotRepository.php +1 -2 trunk1.9 View file →
@@ -2,15 +2,14 @@
2 2
3 3 namespace Mgleis\DiskUsageInsights\Domain;
4 4
5 5 use Mgleis\PhpSqliteKeyValueStore\KeyValueStore;
6 -use PDO;
7 6
8 7 class SnapshotRepository {
9 8
10 9 private KeyValueStore $kvstore;
11 10
12 - public function __construct(PDO $pdo) {
11 + public function __construct(\PDO $pdo) {
13 12 $this->kvstore = new KeyValueStore($pdo);
14 13 }
15 14
16 15 public function load(): Snapshot {