File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -5,5 +5,6 @@ includes:
55 - vendor/phpstan/phpstan-strict-rules/rules.neon
66
77parameters :
8- ignoreErrors :
9- - '#^Contributte\\Deployer\\Logging\\StdOutLogger::__construct\ (\ ) does not call parent constructor from Deployment\\Logger #'
8+ ignoreErrors :
9+ - '#^Contributte\\Deployer\\Logging\\StdOutLogger::__construct\ (\ ) does not call parent constructor from Deployment\\Logger #'
10+ phpVersion : 80000
Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ public function setTestMode(bool $testMode): void
249249
250250 public function getFilePermissions (): ?int
251251 {
252- return $ this ->filePermissions === '' ? null : octdec ($ this ->filePermissions );
252+ return $ this ->filePermissions === '' ? null : ( int ) octdec ($ this ->filePermissions );
253253 }
254254
255255 public function setFilePermissions (string $ mask ): void
@@ -259,7 +259,7 @@ public function setFilePermissions(string $mask): void
259259
260260 public function getDirPermissions (): ?int
261261 {
262- return $ this ->dirPermissions === '' ? null : octdec ($ this ->dirPermissions );
262+ return $ this ->dirPermissions === '' ? null : ( int ) octdec ($ this ->dirPermissions );
263263 }
264264
265265 public function setDirPermissions (string $ mask ): void
You can’t perform that action at this time.
0 commit comments