Skip to content

Commit e434629

Browse files
Philippe Segatorinicolas-grekas
authored andcommitted
Remove superfluous phpdoc tags
1 parent 83a4262 commit e434629

File tree

3 files changed

+2
-9
lines changed

3 files changed

+2
-9
lines changed

Store/CombinedStore.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ class CombinedStore implements StoreInterface, LoggerAwareInterface
3737
private $strategy;
3838

3939
/**
40-
* @param StoreInterface[] $stores The list of synchronized stores
41-
* @param StrategyInterface $strategy
40+
* @param StoreInterface[] $stores The list of synchronized stores
4241
*
4342
* @throws InvalidArgumentException
4443
*/

Store/MemcachedStore.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ public static function isSupported()
3737
}
3838

3939
/**
40-
* @param \Memcached $memcached
41-
* @param int $initialTtl the expiration delay of locks in seconds
40+
* @param int $initialTtl the expiration delay of locks in seconds
4241
*/
4342
public function __construct(\Memcached $memcached, $initialTtl = 300)
4443
{
@@ -148,8 +147,6 @@ public function exists(Key $key)
148147
/**
149148
* Retrieve an unique token for the given key.
150149
*
151-
* @param Key $key
152-
*
153150
* @return string
154151
*/
155152
private function getToken(Key $key)

Store/RedisStore.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ public function exists(Key $key)
126126
*
127127
* @param string $script
128128
* @param string $resource
129-
* @param array $args
130129
*
131130
* @return mixed
132131
*/
@@ -150,8 +149,6 @@ private function evaluate($script, $resource, array $args)
150149
/**
151150
* Retrieves an unique token for the given key.
152151
*
153-
* @param Key $key
154-
*
155152
* @return string
156153
*/
157154
private function getToken(Key $key)

0 commit comments

Comments
 (0)