From c1129035b67b9b8614eec606fc8862da9eee814f Mon Sep 17 00:00:00 2001 From: Stefano Kowalke Date: Tue, 20 Mar 2018 12:27:14 +0100 Subject: [PATCH] Change boolean to bool --- Classes/Typo3DebugBar.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Classes/Typo3DebugBar.php b/Classes/Typo3DebugBar.php index 4525290..e258a71 100644 --- a/Classes/Typo3DebugBar.php +++ b/Classes/Typo3DebugBar.php @@ -46,10 +46,10 @@ class Typo3DebugBar extends DebugBar implements SingletonInterface /** @var array */ protected $extensionConfiguration; - /** @var boolean */ + /** @var bool */ protected $booted = false; - /** @var null|boolean */ + /** @var null|bool */ protected $enabled = null; /** @var FrontendBackendUserAuthentication */