Skip to content

Commit 27d832b

Browse files
committed
Merge pull request #2 from php-cache/analysis-qxVDB8
Applied fixes from StyleCI
2 parents ef2a2f0 + 726f520 commit 27d832b

File tree

3 files changed

+7
-13
lines changed

3 files changed

+7
-13
lines changed

src/RedisCachePool.php

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of php-cache\doctrine-adapter package.
4+
* This file is part of php-cache\redis-adapter package.
55
*
6-
* (c) 2015-2015 Aaron Scherer <[email protected]>
6+
* (c) 2015-2015 Aaron Scherer <[email protected]>, Tobias Nyholm <[email protected]>
77
*
88
* This source file is subject to the MIT license that is bundled
99
* with this source code in the file LICENSE.
@@ -12,14 +12,8 @@
1212
namespace Cache\Adapter\Redis;
1313

1414
use Cache\Adapter\Common\AbstractCachePool;
15-
use Cache\Adapter\Common\CacheItem;
16-
use Cache\Adapter\Common\Exception\InvalidArgumentException;
17-
use Cache\Taggable\TaggableItemInterface;
18-
use Cache\Taggable\TaggablePoolInterface;
19-
use Cache\Taggable\TaggablePoolTrait;
2015
use Predis\Client;
2116
use Psr\Cache\CacheItemInterface;
22-
use Psr\Cache\CacheItemPoolInterface;
2317

2418
/**
2519
* @author Aaron Scherer <[email protected]>
@@ -28,7 +22,7 @@
2822
class RedisCachePool extends AbstractCachePool
2923
{
3024
/**
31-
* @var Client
25+
* @type Client
3226
*/
3327
private $cache;
3428

tests/IntegrationPoolTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of php-cache\doctrine-adapter package.
4+
* This file is part of php-cache\redis-adapter package.
55
*
6-
* (c) 2015-2015 Aaron Scherer <[email protected]>
6+
* (c) 2015-2015 Aaron Scherer <[email protected]>, Tobias Nyholm <[email protected]>
77
*
88
* This source file is subject to the MIT license that is bundled
99
* with this source code in the file LICENSE.

tests/IntegrationTagTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of php-cache\doctrine-adapter package.
4+
* This file is part of php-cache\redis-adapter package.
55
*
6-
* (c) 2015-2015 Aaron Scherer <[email protected]>
6+
* (c) 2015-2015 Aaron Scherer <[email protected]>, Tobias Nyholm <[email protected]>
77
*
88
* This source file is subject to the MIT license that is bundled
99
* with this source code in the file LICENSE.

0 commit comments

Comments
 (0)