We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4370e74 commit 789b489Copy full SHA for 789b489
src/Caching/Storages/SQLiteJournal.php
@@ -40,7 +40,6 @@ private function open(): void
40
}
41
42
$this->pdo = new \PDO('sqlite:' . $this->path);
43
- $this->pdo->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION);
44
$this->pdo->exec('
45
PRAGMA foreign_keys = OFF;
46
PRAGMA journal_mode = WAL;
src/Caching/Storages/SQLiteStorage.php
@@ -28,7 +28,6 @@ public function __construct(string $path)
28
29
30
$this->pdo = new \PDO('sqlite:' . $path);
31
32
33
PRAGMA foreign_keys = ON;
34
CREATE TABLE IF NOT EXISTS cache (
0 commit comments