From 38518c201c915ed17c9fee96c85229992bfa5e61 Mon Sep 17 00:00:00 2001 From: Val Bancer Date: Tue, 8 Nov 2016 11:35:01 +0100 Subject: [PATCH] doc blocks adjusted --- lib/Cake/Console/ShellDispatcher.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Cake/Console/ShellDispatcher.php b/lib/Cake/Console/ShellDispatcher.php index 6de4c7543..bb2095418 100644 --- a/lib/Cake/Console/ShellDispatcher.php +++ b/lib/Cake/Console/ShellDispatcher.php @@ -333,7 +333,7 @@ class ShellDispatcher { * Checks whether the given path is absolute or relative. * * @param string $path absolute or relative path. - * @return boolean + * @return bool */ protected function _isAbsolutePath($path) { return $path[0] === '/' || $this->_isWindowsPath($path); @@ -343,7 +343,7 @@ class ShellDispatcher { * Checks whether the given path is Window OS path. * * @param string $path absolute path. - * @return boolean + * @return bool */ protected function _isWindowsPath($path) { return preg_match('/([a-z])(:)/i', $path) == 1;