| @@ -9,7 +9,7 @@ | ||
| 9 | 9 |  { | 
| 10 | 10 | public function removeRecursivelyNullValue(&$options): void | 
| 11 | 11 |      { | 
| 12 | -        $options = array_filter((array) $options, function ($val) { | |
| 12 | +        $options = array_filter((array)$options, function($val) { | |
| 13 | 13 | return !is_null($val); | 
| 14 | 14 | }); | 
| 15 | 15 | |
| @@ -154,7 +154,7 @@ | ||
| 154 | 154 | |
| 155 | 155 | public function loadLibraries(array $packages): string | 
| 156 | 156 |      { | 
| 157 | -        array_walk($packages, function (&$item) { | |
| 157 | +        array_walk($packages, function(&$item) { | |
| 158 | 158 | $item = "'".$item."'"; | 
| 159 | 159 | }); | 
| 160 | 160 | |
| @@ -12,7 +12,7 @@ | ||
| 12 | 12 |  { | 
| 13 | 13 | public function draw(DateTimeInterface $date): string | 
| 14 | 14 |      { | 
| 15 | -        return 'new Date('.$date->format('Y').', '.((int) $date->format('n') - 1).', '.$date->format('j').', '. | |
| 15 | +        return 'new Date('.$date->format('Y').', '.((int)$date->format('n')-1).', '.$date->format('j').', '. | |
| 16 | 16 |              $date->format('H').', '.$date->format('i').', '.$date->format('s').')'; | 
| 17 | 17 | } | 
| 18 | 18 | } |