Skip to content

Commit

Permalink
Fix annotations point to Network\Session
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Dec 9, 2017
1 parent 475ef7e commit bc14b17
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/Auth/Storage/SessionStorage.php
Expand Up @@ -41,7 +41,7 @@ class SessionStorage implements StorageInterface
/**
* Session object.
*
* @var \Cake\Network\Session
* @var \Cake\Http\Session
*/
protected $_session;

Expand Down
2 changes: 1 addition & 1 deletion src/Controller/Component/AuthComponent.php
Expand Up @@ -221,7 +221,7 @@ class AuthComponent extends Component
/**
* Instance of the Session object
*
* @var \Cake\Network\Session
* @var \Cake\Http\Session
* @deprecated 3.1.0 Will be removed in 4.0
*/
public $session;
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/Component/FlashComponent.php
Expand Up @@ -34,7 +34,7 @@ class FlashComponent extends Component
/**
* The Session object instance
*
* @var \Cake\Network\Session
* @var \Cake\Http\Session
*/
protected $_session;

Expand Down
2 changes: 1 addition & 1 deletion src/Controller/Component/SecurityComponent.php
Expand Up @@ -87,7 +87,7 @@ class SecurityComponent extends Component
/**
* The Session object
*
* @var \Cake\Network\Session
* @var \Cake\Http\Session
*/
public $session;

Expand Down
2 changes: 1 addition & 1 deletion src/Routing/RequestActionTrait.php
Expand Up @@ -16,7 +16,7 @@
use Cake\Core\Configure;
use Cake\Http\Response;
use Cake\Http\ServerRequest;
use Cake\Network\Session;
use Cake\Http\Session;
use Cake\Routing\Filter\ControllerFactoryFilter;
use Cake\Routing\Filter\RoutingFilter;

Expand Down
4 changes: 2 additions & 2 deletions src/TestSuite/IntegrationTestCase.php
Expand Up @@ -22,7 +22,7 @@ class_alias('PHPUnit_Exception', 'PHPUnit\Exception');

use Cake\Core\Configure;
use Cake\Database\Exception as DatabaseException;
use Cake\Network\Session;
use Cake\Http\Session;
use Cake\Routing\Router;
use Cake\TestSuite\Stub\TestExceptionRenderer;
use Cake\Utility\CookieCryptTrait;
Expand Down Expand Up @@ -130,7 +130,7 @@ abstract class IntegrationTestCase extends TestCase
/**
* The session instance from the last request
*
* @var \Cake\Network\Session|null
* @var \Cake\Http\Session|null
*/
protected $_requestSession;

Expand Down

0 comments on commit bc14b17

Please sign in to comment.