Skip to content

Commit

Permalink
Merge pull request #4124 from kenjis/fix-session-testcase
Browse files Browse the repository at this point in the history
Fix `@var` in SessionTestCase.
  • Loading branch information
samsonasik authored Jan 18, 2021
2 parents 54e6b46 + 08ac2c8 commit 926eb73
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion admin/module/tests/_support/SessionTestCase.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
<?php namespace Tests\Support;

use CodeIgniter\Session\Handlers\ArrayHandler;
use CodeIgniter\Session\SessionInterface;
use CodeIgniter\Test\CIUnitTestCase;
use CodeIgniter\Test\Mock\MockSession;

class SessionTestCase extends CIUnitTestCase
{
/**
* @var SessionHandler
* @var SessionInterface
*/
protected $session;

Expand Down
3 changes: 2 additions & 1 deletion admin/starter/tests/_support/SessionTestCase.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
<?php namespace Tests\Support;

use CodeIgniter\Session\Handlers\ArrayHandler;
use CodeIgniter\Session\SessionInterface;
use CodeIgniter\Test\CIUnitTestCase;
use CodeIgniter\Test\Mock\MockSession;

class SessionTestCase extends CIUnitTestCase
{
/**
* @var SessionHandler
* @var SessionInterface
*/
protected $session;

Expand Down

0 comments on commit 926eb73

Please sign in to comment.