We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -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 | * This file is part of CSBill project. |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | * |
37 | 37 | * @return int |
38 | 38 | */ |
39 | - public function getId(): ?int |
|
39 | + public function getId(): ? int |
|
40 | 40 | { |
41 | 41 | return $this->id; |
42 | 42 | } |
@@ -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 | * This file is part of CSBill project. |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | * |
105 | 105 | * @return string |
106 | 106 | */ |
107 | - public function getDescription(): ?string |
|
107 | + public function getDescription(): ? string |
|
108 | 108 | { |
109 | 109 | return $this->description; |
110 | 110 | } |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | * |
153 | 153 | * @return string |
154 | 154 | */ |
155 | - public function getType(): ?string |
|
155 | + public function getType(): ? string |
|
156 | 156 | { |
157 | 157 | return $this->type; |
158 | 158 | } |
@@ -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 | * This file is part of CSBill project. |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | |
37 | 37 | $settings = $manager->getSettings(); |
38 | 38 | |
39 | - array_walk_recursive($settings, function (Setting &$setting): Response { |
|
39 | + array_walk_recursive($settings, function(Setting & $setting): Response { |
|
40 | 40 | $setting = $setting->getValue(); |
41 | 41 | }); |
42 | 42 |
@@ -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 | * This file is part of CSBill project. |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | 'multiple' => true, |
62 | 62 | 'expanded' => true, |
63 | 63 | 'class' => 'CSBillClientBundle:Contact', |
64 | - 'query_builder' => function (EntityRepository $repo) use ($clientId) { |
|
64 | + 'query_builder' => function(EntityRepository $repo) use ($clientId) { |
|
65 | 65 | return $repo->createQueryBuilder('c') |
66 | 66 | ->where('c.client = :client') |
67 | 67 | ->setParameter('client', $clientId); |
@@ -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 | * This file is part of CSBill project. |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | * |
33 | 33 | * @throws UsernameNotFoundException |
34 | 34 | */ |
35 | - public function getUsernameForToken(string $token): ?UserInterface |
|
35 | + public function getUsernameForToken(string $token): ? UserInterface |
|
36 | 36 | { |
37 | 37 | $q = $this |
38 | 38 | ->createQueryBuilder('t') |