Skip to content

Commit 47bd309

Browse files
committed
typo in class name
1 parent 0818b12 commit 47bd309

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Caching/Storages/SQLiteJournal.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/**
1515
* SQLite based journal.
1616
*/
17-
class SqliteJournal extends Nette\Object implements IJournal
17+
class SQLiteJournal extends Nette\Object implements IJournal
1818
{
1919
/** @var \PDO */
2020
private $pdo;

tests/Caching/SQLiteJournal.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Test: Nette\Caching\Storages\SQLiteJournal basic test.
55
*/
66

7-
use Nette\Caching\Storages\SqliteJournal;
7+
use Nette\Caching\Storages\SQLiteJournal;
88

99

1010
require __DIR__ . '/../bootstrap.php';
@@ -21,7 +21,7 @@ class SQLiteJournalTest extends IJournalTestCase
2121

2222
public function createJournal()
2323
{
24-
return new SqliteJournal;
24+
return new SQLiteJournal;
2525
}
2626

2727
}

0 commit comments

Comments
 (0)