Skip to content
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.

Commit

Permalink
Cast FileStorage::saveCollection return type to bool to make sure it …
Browse files Browse the repository at this point in the history
…stays compatible with StorageInterface.
  • Loading branch information
gsomoza committed Jul 14, 2015
1 parent bb0d6db commit 3f0f832
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Storage/FileStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,6 @@ public function saveCollection(MigratedVersions $versions)
$this->path
));
}
return $result;
return (bool) $result;
}
}

0 comments on commit 3f0f832

Please sign in to comment.