From 3d5e8782e3ccdea9950198a2a29db32a09face52 Mon Sep 17 00:00:00 2001 From: Mark Sch Date: Thu, 27 Dec 2018 03:11:32 +0100 Subject: [PATCH] Fix nullable docblocks --- src/Controller/Component/AuthComponent.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Controller/Component/AuthComponent.php b/src/Controller/Component/AuthComponent.php index 2cd5061ed74..091171404c2 100644 --- a/src/Controller/Component/AuthComponent.php +++ b/src/Controller/Component/AuthComponent.php @@ -231,7 +231,7 @@ 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; @@ -239,7 +239,7 @@ class AuthComponent extends Component * 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;