File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 24
24
25
25
- name : PHP-CS-Fixer Check
26
26
run : |
27
- php-cs-fixer fix -v --dry-run ./src --rules=@PSR12
28
- php-cs-fixer fix -v --dry-run ./tests.php --rules=@PSR12
27
+ php-cs-fixer fix -v --dry-run ./src --rules=@PSR12,-blank_line_after_opening_tag
28
+ php-cs-fixer fix -v --dry-run ./tests.php --rules=@PSR12,-blank_line_after_opening_tag
Original file line number Diff line number Diff line change 8
8
* License: GNU/GPLv2
9
9
* @see LICENSE.txt
10
10
*
11
- * This file: The loader (last modified: 2024.08.09 ).
11
+ * This file: The loader (last modified: 2024.12.26 ).
12
12
*/
13
13
14
14
namespace phpMussel \Core ;
@@ -93,7 +93,7 @@ class Loader
93
93
/**
94
94
* @var string phpMussel version number (SemVer).
95
95
*/
96
- public $ ScriptVersion = '3.5.2 ' ;
96
+ public $ ScriptVersion = '3.5.4 ' ;
97
97
98
98
/**
99
99
* @var string phpMussel version identifier (complete notation).
@@ -945,10 +945,10 @@ public function readFileGZ(string $File): string
945
945
*
946
946
* @param string $Filename Refer to the description for file().
947
947
* @param int $Flags Refer to the description for file().
948
- * @param resource|null $Context Refer to the description for file().
948
+ * @param ? resource $Context Refer to the description for file().
949
949
* @return array The file's contents or an empty array on failure.
950
950
*/
951
- public function readFileAsArray (string $ Filename , int $ Flags = 0 , $ Context = null ): array
951
+ public function readFileAsArray (string $ Filename , int $ Flags = 0 , ? $ Context = null ): array
952
952
{
953
953
/** Guard. */
954
954
if (!is_file ($ Filename ) || !is_readable ($ Filename ) || !$ Filesize = filesize ($ Filename )) {
You can’t perform that action at this time.
0 commit comments