Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Completed
Push — master ( 95c9c1...ca99b9 )
by Pierre
11:16
created
src/SettingsBundle/Entity/Setting.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/SettingsBundle/Model/Setting.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/SettingsBundle/Controller/SettingsController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/QuoteBundle/Form/EventListener/QuoteUsersSubscriber.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/UserBundle/Repository/ApiTokenRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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')
Please login to merge, or discard this patch.