diff --git a/library/Mockery/Expectation.php b/library/Mockery/Expectation.php index ddcc185fc..ed87a5a67 100644 --- a/library/Mockery/Expectation.php +++ b/library/Mockery/Expectation.php @@ -729,7 +729,7 @@ public function times($limit = null) } $this->_countValidators[$this->_countValidatorClass] = new $this->_countValidatorClass($this, $limit); - if('Mockery\CountValidator\Exact' !== $this->_countValidatorClass){ + if ('Mockery\CountValidator\Exact' !== $this->_countValidatorClass) { $this->_countValidatorClass = 'Mockery\CountValidator\Exact'; unset($this->_countValidators[$this->_countValidatorClass]); }