@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /** |
6 | 6 | * Balloon |
@@ -51,17 +51,17 @@ discard block |
||
51 | 51 | foreach ($config as $option => $value) { |
52 | 52 | switch ($option) { |
53 | 53 | case 'ident': |
54 | - $this->ident = (string) $value; |
|
54 | + $this->ident = (string)$value; |
|
55 | 55 | unset($config[$option]); |
56 | 56 | |
57 | 57 | break; |
58 | 58 | case 'option': |
59 | - $this->option = (int) (string) $value; |
|
59 | + $this->option = (int)(string)$value; |
|
60 | 60 | unset($config[$option]); |
61 | 61 | |
62 | 62 | break; |
63 | 63 | case 'facility': |
64 | - $this->facility = (int) (string) $value; |
|
64 | + $this->facility = (int)(string)$value; |
|
65 | 65 | unset($config[$option]); |
66 | 66 | |
67 | 67 | break; |