From 935ebc8783f907013c7ed99d215898e08d8f645e Mon Sep 17 00:00:00 2001 From: Bellardia Date: Fri, 21 Oct 2022 11:53:52 -0400 Subject: [PATCH] Fix missing return type for _getVersion() --- scripts/Phalcon/Devtools/Version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Phalcon/Devtools/Version.php b/scripts/Phalcon/Devtools/Version.php index 30ff5d2ce..9e7a32278 100644 --- a/scripts/Phalcon/Devtools/Version.php +++ b/scripts/Phalcon/Devtools/Version.php @@ -37,7 +37,7 @@ class Version extends PhVersion * * @return array */ - protected static function _getVersion() + protected static function _getVersion(): array { return [3, 4, 14, 0, 0]; }