| @@ -1,5 +1,5 @@ | ||
| 1 | 1 | <?php | 
| 2 | -declare (strict_types=1); | |
| 2 | +declare (strict_types = 1); | |
| 3 | 3 | namespace DQNEO\FizzBuzzEnterpriseEdition\Logic; | 
| 4 | 4 | |
| 5 | 5 | use DQNEO\FizzBuzzEnterpriseEdition\Entity\AbstractEntity; | 
| @@ -1,5 +1,5 @@ discard block | ||
| 1 | 1 | <?php | 
| 2 | -declare (strict_types=1); | |
| 2 | +declare (strict_types = 1); | |
| 3 | 3 | namespace DQNEO\FizzBuzzEnterpriseEdition\Console; | 
| 4 | 4 | |
| 5 | 5 | use Symfony\Component\Console\Input\InputArgument; | 
| @@ -28,7 +28,7 @@ discard block | ||
| 28 | 28 | $logic = new FizzBuzzLogic(new IntegerValue(3), new IntegerValue(5)); | 
| 29 | 29 | |
| 30 | 30 | $fizzbuzz = new FizzBuzzApplication($logic, $output); | 
| 31 | - $rangeIterator = new RangeIterator(new IntegerValue(1), new IntegerValue((int)$to)); | |
| 31 | + $rangeIterator = new RangeIterator(new IntegerValue(1), new IntegerValue((int) $to)); | |
| 32 | 32 | $fizzbuzz->run($rangeIterator); | 
| 33 | 33 | |
| 34 | 34 | } |