Skip to content

Commit b432271

Browse files
NyholmStyleCIBot
authored andcommitted
Applied fixes from StyleCI
1 parent 5095a3b commit b432271

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/MemcacheCachePool.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
class MemcacheCachePool extends AbstractCachePool
1919
{
2020
/**
21-
* @var Memcache
21+
* @type Memcache
2222
*/
2323
private $cache;
2424

tests/IntegrationPoolTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function createCachePool()
2727
private function getClient()
2828
{
2929
if ($this->client === null) {
30-
$this->client = new Memcache;
30+
$this->client = new Memcache();
3131
$this->client->connect('localhost', 11211);
3232
}
3333

tests/IntegrationTagTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function createCachePool()
2727
private function getClient()
2828
{
2929
if ($this->client === null) {
30-
$this->client = new Memcache;
30+
$this->client = new Memcache();
3131
$this->client->connect('localhost', 11211);
3232
}
3333

0 commit comments

Comments
 (0)