Skip to content

Commit 79284ac

Browse files
Merge branch '6.2' into 6.3
* 6.2: CS fix Fix test provider
2 parents 3c3712f + c347610 commit 79284ac

11 files changed

+17
-6
lines changed

Store/MongoDbStore.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -187,11 +187,11 @@ private function skimUri(string $uri): string
187187
*
188188
* @see http://docs.mongodb.org/manual/tutorial/expire-data/
189189
*
190+
* @return void
191+
*
190192
* @throws UnsupportedException if options are not supported by the selected server
191193
* @throws MongoInvalidArgumentException for parameter/option parsing errors
192194
* @throws DriverRuntimeException for other driver errors (e.g. connection errors)
193-
*
194-
* @return void
195195
*/
196196
public function createTtlIndex(int $expireAfterSeconds = 0)
197197
{
@@ -206,9 +206,9 @@ public function createTtlIndex(int $expireAfterSeconds = 0)
206206
}
207207

208208
/**
209-
* @throws LockExpiredException when save is called on an expired lock
210-
*
211209
* @return void
210+
*
211+
* @throws LockExpiredException when save is called on an expired lock
212212
*/
213213
public function save(Key $key)
214214
{
@@ -231,10 +231,10 @@ public function save(Key $key)
231231
}
232232

233233
/**
234+
* @return void
235+
*
234236
* @throws LockStorageException
235237
* @throws LockExpiredException
236-
*
237-
* @return void
238238
*/
239239
public function putOffExpiration(Key $key, float $ttl)
240240
{

Tests/Store/CombinedStoreTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
/**
2626
* @author Jérémy Derussé <jeremy@derusse.com>
27+
*
2728
* @group integration
2829
*/
2930
class CombinedStoreTest extends AbstractStoreTestCase

Tests/Store/DoctrineDbalPostgreSqlStoreTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
* @author Jérémy Derussé <jeremy@derusse.com>
2525
*
2626
* @requires extension pdo_pgsql
27+
*
2728
* @group integration
2829
*/
2930
class DoctrineDbalPostgreSqlStoreTest extends AbstractStoreTestCase
@@ -49,6 +50,7 @@ public function getStore(): PersistingStoreInterface
4950

5051
/**
5152
* @requires extension pdo_sqlite
53+
*
5254
* @dataProvider getInvalidDrivers
5355
*/
5456
public function testInvalidDriver($connOrDsn)

Tests/Store/MemcachedStoreTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
* @author Jérémy Derussé <jeremy@derusse.com>
2222
*
2323
* @requires extension memcached
24+
*
2425
* @group integration
2526
*/
2627
class MemcachedStoreTest extends AbstractStoreTestCase

Tests/Store/MongoDbStoreTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
* @author Joe Bennett <joe@assimtech.com>
2424
*
2525
* @requires extension mongodb
26+
*
2627
* @group integration
2728
*/
2829
class MongoDbStoreTest extends AbstractStoreTestCase

Tests/Store/PostgreSqlStoreTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
* @author Jérémy Derussé <jeremy@derusse.com>
2222
*
2323
* @requires extension pdo_pgsql
24+
*
2425
* @group integration
2526
*/
2627
class PostgreSqlStoreTest extends AbstractStoreTestCase

Tests/Store/PredisStoreTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
/**
1717
* @author Jérémy Derussé <jeremy@derusse.com>
18+
*
1819
* @group integration
1920
*/
2021
class PredisStoreTest extends AbstractRedisStoreTestCase

Tests/Store/RedisArrayStoreTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
* @author Jérémy Derussé <jeremy@derusse.com>
1818
*
1919
* @requires extension redis
20+
*
2021
* @group integration
2122
*/
2223
class RedisArrayStoreTest extends AbstractRedisStoreTestCase

Tests/Store/RedisClusterStoreTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
* @author Jérémy Derussé <jeremy@derusse.com>
1818
*
1919
* @requires extension redis
20+
*
2021
* @group integration
2122
*/
2223
class RedisClusterStoreTest extends AbstractRedisStoreTestCase

Tests/Store/RedisStoreTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
* @author Jérémy Derussé <jeremy@derusse.com>
2020
*
2121
* @requires extension redis
22+
*
2223
* @group integration
2324
*/
2425
class RedisStoreTest extends AbstractRedisStoreTestCase

0 commit comments

Comments
 (0)