Skip to content

Commit

Permalink
Fix nullable docblocks
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Dec 27, 2018
1 parent ae35ea0 commit 3d5e878
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Controller/Component/AuthComponent.php
Expand Up @@ -231,15 +231,15 @@ class AuthComponent extends Component
* successfully logging in the current user after calling `login()`
* in the same request
*
* @var \Cake\Auth\BaseAuthenticate
* @var \Cake\Auth\BaseAuthenticate|null
*/
protected $_authenticationProvider;

/**
* The instance of the Authorize provider that was used to grant
* access to the current user to the URL they are requesting.
*
* @var \Cake\Auth\BaseAuthorize
* @var \Cake\Auth\BaseAuthorize|null
*/
protected $_authorizationProvider;

Expand Down

0 comments on commit 3d5e878

Please sign in to comment.