We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0818b12 commit 47bd309Copy full SHA for 47bd309
src/Caching/Storages/SQLiteJournal.php
@@ -14,7 +14,7 @@
14
/**
15
* SQLite based journal.
16
*/
17
-class SqliteJournal extends Nette\Object implements IJournal
+class SQLiteJournal extends Nette\Object implements IJournal
18
{
19
/** @var \PDO */
20
private $pdo;
tests/Caching/SQLiteJournal.phpt
@@ -4,7 +4,7 @@
4
* Test: Nette\Caching\Storages\SQLiteJournal basic test.
5
6
7
-use Nette\Caching\Storages\SqliteJournal;
+use Nette\Caching\Storages\SQLiteJournal;
8
9
10
require __DIR__ . '/../bootstrap.php';
@@ -21,7 +21,7 @@ class SQLiteJournalTest extends IJournalTestCase
21
22
public function createJournal()
23
24
- return new SqliteJournal;
+ return new SQLiteJournal;
25
}
26
27
0 commit comments