Scrutinizer Auto-Fixes

This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
This commit is contained in:
Scrutinizer Auto-Fixer
2015-08-13 15:32:44 +00:00
parent 95d84d3b08
commit f59b447603
5 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -192,7 +192,7 @@ class FeatureSet
*/
protected function hasBigNumber()
{
return class_exists('Moontoast\Math\BigNumber') && ! $this->disableBigNumber;
return class_exists('Moontoast\Math\BigNumber') && !$this->disableBigNumber;
}
/**
@@ -202,6 +202,6 @@ class FeatureSet
*/
protected function is64BitSystem()
{
return PHP_INT_SIZE == 8 && ! $this->disable64Bit;
return PHP_INT_SIZE == 8 && !$this->disable64Bit;
}
}