Skip to content

Commit

Permalink
CS Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Slamdunk committed Nov 14, 2014
1 parent f2afb44 commit c705b8e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions src/Storage/Adapter/Redis.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ class Redis extends AbstractAdapter implements
FlushableInterface,
TotalSpaceCapableInterface
{

/**
* Has this instance be initialized
*
Expand Down Expand Up @@ -271,7 +270,6 @@ protected function internalSetItems(array & $normalizedKeyValuePairs)
} else {
$success = $redis->mSet($namespacedKeyValuePairs);
}

} catch (RedisResourceException $e) {
throw new Exception\RuntimeException($redis->getLastError(), $e->getCode(), $e);
}
Expand Down Expand Up @@ -387,7 +385,6 @@ public function getTotalSpace()
}

return $info['used_memory'];

}

/* status */
Expand Down
1 change: 0 additions & 1 deletion src/Storage/Adapter/RedisResourceManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,6 @@ protected function normalizeServer(&$server)
$port = isset($server['port']) ? (int) $server['port'] : $port;
$timeout = isset($server['timeout']) ? (int) $server['timeout'] : $timeout;
}

} else {
// parse server from URI host{:?port}
$server = trim($server);
Expand Down
2 changes: 0 additions & 2 deletions test/Storage/Adapter/RedisTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

class RedisTest extends CommonAdapterTest
{

/**
*
* @var Cache\Storage\Adapter\RedisOptions
Expand Down Expand Up @@ -313,5 +312,4 @@ public function testOptionsGetSetPassword()
$this->_options->setPassword($password);
$this->assertEquals($password, $this->_options->getPassword(), 'Password was set incorrectly using RedisOptions');
}

}

0 comments on commit c705b8e

Please sign in to comment.