Skip to content

Commit

Permalink
Fixed a PHPCS issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
boenrobot committed Jan 29, 2012
1 parent 3d8c315 commit ecf7b8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PEAR2/Cache/SHM.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function __construct($persistentId)
$this->adapter = new Adapter\Placebo($persistentId);
} elseif (version_compare(phpversion('wincache'), '1.1.0', '>=')) {
$this->adapter = new Adapter\Wincache($persistentId);
}elseif (version_compare(phpversion('apc'), '3.0.13', '>=')) {
} elseif (version_compare(phpversion('apc'), '3.0.13', '>=')) {
$this->adapter = new Adapter\APC($persistentId);
} else {
throw new SHM\InvalidArgumentException(
Expand Down

0 comments on commit ecf7b8d

Please sign in to comment.