Skip to content

Commit

Permalink
Merge pull request #3274 from mhsdesign/task/fixStringFrontendGetDocType
Browse files Browse the repository at this point in the history
TASK: Correct doc types StringFrontend::get
  • Loading branch information
mhsdesign committed Jan 24, 2024
2 parents 5c474d8 + ea98fd3 commit c3d8c23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Neos.Cache/Classes/Frontend/FrontendInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function set(string $entryIdentifier, $data, array $tags = [], int $lifet
* Finds and returns data from the cache.
*
* @param string $entryIdentifier Something which identifies the cache entry - depends on concrete cache
* @return mixed
* @return mixed The value or false if the cache entry could not be loaded
* @api
*/
public function get(string $entryIdentifier);
Expand Down
2 changes: 1 addition & 1 deletion Neos.Cache/Classes/Frontend/StringFrontend.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function set(string $entryIdentifier, $string, array $tags = [], int $lif
* Finds and returns a variable value from the cache.
*
* @param string $entryIdentifier Identifier of the cache entry to fetch
* @return string The value
* @return string|false The value or false if the cache entry could not be loaded
* @throws \InvalidArgumentException
* @api
*/
Expand Down

0 comments on commit c3d8c23

Please sign in to comment.