File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -25,15 +25,15 @@ class PdoDbalStoreTest extends AbstractStoreTest
2525
2626 protected static $ dbFile ;
2727
28- public static function setupBeforeClass ()
28+ public static function setUpBeforeClass (): void
2929 {
3030 self ::$ dbFile = tempnam (sys_get_temp_dir (), 'sf_sqlite_lock ' );
3131
3232 $ store = new PdoStore (DriverManager::getConnection (['driver ' => 'pdo_sqlite ' , 'path ' => self ::$ dbFile ]));
3333 $ store ->createTable ();
3434 }
3535
36- public static function tearDownAfterClass ()
36+ public static function tearDownAfterClass (): void
3737 {
3838 @unlink (self ::$ dbFile );
3939 }
Original file line number Diff line number Diff line change @@ -24,15 +24,15 @@ class PdoStoreTest extends AbstractStoreTest
2424
2525 protected static $ dbFile ;
2626
27- public static function setupBeforeClass ()
27+ public static function setUpBeforeClass (): void
2828 {
2929 self ::$ dbFile = tempnam (sys_get_temp_dir (), 'sf_sqlite_lock ' );
3030
3131 $ store = new PdoStore ('sqlite: ' .self ::$ dbFile );
3232 $ store ->createTable ();
3333 }
3434
35- public static function tearDownAfterClass ()
35+ public static function tearDownAfterClass (): void
3636 {
3737 @unlink (self ::$ dbFile );
3838 }
You can’t perform that action at this time.
0 commit comments