Skip to content

Commit

Permalink
refactor: vendor/bin/rector
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Mar 22, 2022
1 parent 0b2f01c commit 685a11b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/system/Session/Handlers/Database/MySQLiHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

namespace CodeIgniter\Session\Handlers\Database;

use CodeIgniter\Session\Handlers\DatabaseHandler;
use Config\App as AppConfig;
use Config\Database as DatabaseConfig;

Expand All @@ -31,7 +32,7 @@ protected function setUp(): void
protected function getInstance($options = [])
{
$defaults = [
'sessionDriver' => 'CodeIgniter\Session\Handlers\DatabaseHandler',
'sessionDriver' => DatabaseHandler::class,
'sessionCookieName' => 'ci_session',
'sessionExpiration' => 7200,
'sessionSavePath' => 'ci_sessions',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

namespace CodeIgniter\Session\Handlers\Database;

use CodeIgniter\Session\Handlers\DatabaseHandler;
use Config\App as AppConfig;
use Config\Database as DatabaseConfig;

Expand All @@ -31,7 +32,7 @@ protected function setUp(): void
protected function getInstance($options = [])
{
$defaults = [
'sessionDriver' => 'CodeIgniter\Session\Handlers\DatabaseHandler',
'sessionDriver' => DatabaseHandler::class,
'sessionCookieName' => 'ci_session',
'sessionExpiration' => 7200,
'sessionSavePath' => 'ci_sessions',
Expand Down

0 comments on commit 685a11b

Please sign in to comment.