Skip to content

Commit

Permalink
fix(ACL): Actually return in ACLStorageWrapper methods
Browse files Browse the repository at this point in the history
Signed-off-by: provokateurin <[email protected]>
  • Loading branch information
provokateurin authored and backportbot[bot] committed Sep 10, 2024
1 parent 75d5aaa commit 24475ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
4 changes: 2 additions & 2 deletions lib/ACL/ACLStorageWrapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ public function filemtime($path) {
if (!$this->checkPermissions($path, Constants::PERMISSION_READ)) {
return false;
}
parent::filemtime($path);
return parent::filemtime($path);
}

public function file_get_contents($path) {
Expand All @@ -274,7 +274,7 @@ public function hash($type, $path, $raw = false) {
if (!$this->checkPermissions($path, Constants::PERMISSION_READ)) {
return false;
}
parent::hash($type, $path, $raw);
return parent::hash($type, $path, $raw);
}

public function getETag($path) {
Expand Down
8 changes: 2 additions & 6 deletions tests/psalm-baseline.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<files psalm-version="5.16.0@2897ba636551a8cb61601cc26f6ccfbba6c36591">
<files psalm-version="5.26.1@d747f6500b38ac4f7dfc5edbcae6e4b637d7add0">
<file src="lib/ACL/ACLStorageWrapper.php">
<InvalidNullableReturnType>
<code>filemtime</code>
<code>hash</code>
</InvalidNullableReturnType>
<UndefinedClass>
<code>IteratorDirectory</code>
<code><![CDATA[IteratorDirectory]]></code>
</UndefinedClass>
</file>
<file src="lib/Versions/ExpireManager.php">
Expand Down

0 comments on commit 24475ed

Please sign in to comment.