Skip to content

Commit

Permalink
correcting docblocks
Browse files Browse the repository at this point in the history
  • Loading branch information
niden committed Nov 1, 2021
1 parent a51ec6b commit e485ed7
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions phalcon/Storage/Adapter/AdapterInterface.zep
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ interface AdapterInterface
* item has expired. If you need to set this key forever, you should use
* the `setForever()` method.
*
* @param string $key
* @param mixed $value
* @param DateInterval|int|null $ttl
* @param string $key
* @param mixed $value
* @param \DateInterval|int|null $ttl
*
* @return bool
*/
Expand Down
6 changes: 3 additions & 3 deletions phalcon/Storage/Adapter/Apcu.zep
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,9 @@ class Apcu extends AbstractAdapter
/**
* Stores data in the adapter
*
* @param string $key
* @param mixed $value
* @param DateInterval|int|null $ttl
* @param string $key
* @param mixed $value
* @param \DateInterval|int|null $ttl
*
* @return bool
* @throws Exception
Expand Down
6 changes: 3 additions & 3 deletions phalcon/Storage/Adapter/Libmemcached.zep
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,9 @@ class Libmemcached extends AbstractAdapter
/**
* Stores data in the adapter
*
* @param string $key
* @param mixed $value
* @param DateInterval|int|null $ttl
* @param string $key
* @param mixed $value
* @param \DateInterval|int|null $ttl
*
* @return bool
* @throws BaseException
Expand Down
6 changes: 3 additions & 3 deletions phalcon/Storage/Adapter/Memory.zep
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,9 @@ class Memory extends AbstractAdapter
/**
* Stores data in the adapter
*
* @param string $key
* @param mixed $value
* @param DateInterval|int|null $ttl
* @param string $key
* @param mixed $value
* @param \DateInterval|int|null $ttl
*
* @return bool
* @throws BaseException
Expand Down
6 changes: 3 additions & 3 deletions phalcon/Storage/Adapter/Redis.zep
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ class Redis extends AbstractAdapter
/**
* Stores data in the adapter
*
* @param string $key
* @param mixed $value
* @param DateInterval|int|null $ttl
* @param string $key
* @param mixed $value
* @param \DateInterval|int|null $ttl
*
* @return bool
* @throws BaseException
Expand Down
6 changes: 3 additions & 3 deletions phalcon/Storage/Adapter/Stream.zep
Original file line number Diff line number Diff line change
Expand Up @@ -246,9 +246,9 @@ class Stream extends AbstractAdapter
/**
* Stores data in the adapter
*
* @param string $key
* @param mixed $value
* @param DateInterval|int|null $ttl
* @param string $key
* @param mixed $value
* @param \DateInterval|int|null $ttl
*
* @return bool
*/
Expand Down

0 comments on commit e485ed7

Please sign in to comment.