| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | public function __construct(string $storageDir, string $dbName, string $type = 'file', Factory $factory = null) |
||
| 34 | { |
||
| 35 | $this->storageDir = \rtrim($storageDir, '/'); |
||
| 36 | $this->dbName = $this->normalize($dbName); |
||
| 37 | $this->setType($type); |
||
| 38 | $this->factory = $factory ?? new Factory(); |
||
| 39 | } |
||
| 86 |