From ae18b1abe4220cc0026647872c1ffab3a9610601 Mon Sep 17 00:00:00 2001 From: Nathanael Esayeas Date: Wed, 15 Sep 2021 20:58:40 -0400 Subject: [PATCH] Appease the ci gods Signed-off-by: Nathanael Esayeas --- library/Mockery/Expectation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]); }