GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#46)
by Andy
03:22
created
src/Service/JobIndex/JobIndexService.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package: Chapi
4
- *
5
- * @author:  msiebeneicher
6
- * @since:   2015-07-31
7
- *
8
- */
3
+     * @package: Chapi
4
+     *
5
+     * @author:  msiebeneicher
6
+     * @since:   2015-07-31
7
+     *
8
+     */
9 9
 
10 10
 
11 11
 namespace Chapi\Service\JobIndex;
Please login to merge, or discard this patch.
src/Service/JobRepository/BridgeInterface.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package: chapi
4
- *
5
- * @author:  msiebeneicher
6
- * @since:   2015-08-28
7
- */
3
+     * @package: chapi
4
+     *
5
+     * @author:  msiebeneicher
6
+     * @since:   2015-08-28
7
+     */
8 8
 
9 9
 
10 10
 namespace Chapi\Service\JobRepository;
Please login to merge, or discard this patch.
src/Exception/HttpConnectionException.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package: chapi
4
- *
5
- * @author:  msiebeneicher
6
- * @since:   2015-08-01
7
- *
8
- */
3
+     * @package: chapi
4
+     *
5
+     * @author:  msiebeneicher
6
+     * @since:   2015-08-01
7
+     *
8
+     */
9 9
 
10 10
 
11 11
 namespace Chapi\Exception;
Please login to merge, or discard this patch.
src/BusinessCase/JobManagement/StoreJobBusinessCase.php 1 patch
Braces   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -101,8 +101,7 @@  discard block
 block discarded – undo
101 101
         if (empty($aJobNames))
102 102
         {
103 103
             $_aChronosJobs = $this->oJobRepositoryChronos->getJobs();
104
-        }
105
-        else
104
+        } else
106 105
         {
107 106
             $_aChronosJobs = [];
108 107
             foreach ($aJobNames as $_sJobName)
@@ -124,8 +123,7 @@  discard block
 block discarded – undo
124 123
                         'Job "%s" successfully stored in local repository',
125 124
                         $_oJobEntity->name
126 125
                     ));
127
-                }
128
-                else
126
+                } else
129 127
                 {
130 128
                     $this->oLogger->error(sprintf(
131 129
                         'Failed to store job "%s" in local repository',
@@ -156,8 +154,7 @@  discard block
 block discarded – undo
156 154
                         'Job "%s" successfully updated in local repository',
157 155
                         $_oJobEntity->name
158 156
                     ));
159
-                }
160
-                else
157
+                } else
161 158
                 {
162 159
                     $this->oLogger->error(sprintf(
163 160
                         'Failed to update job "%s" in local repository',
@@ -245,8 +242,7 @@  discard block
 block discarded – undo
245 242
             if ($this->oJobComparisonBusinessCase->hasSameJobType($_oJobEntityLocal, $_oJobEntityChronos))
246 243
             {
247 244
                 $_bHasUpdatedJob = $this->oJobRepositoryChronos->updateJob($_oJobEntityLocal);
248
-            }
249
-            else
245
+            } else
250 246
             {
251 247
                 $_bHasUpdatedJob = (
252 248
                     $this->oJobRepositoryChronos->removeJob($_oJobEntityChronos)
Please login to merge, or discard this patch.
src/Entity/Http/AuthEntity.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package: chapi
4
- *
5
- * @author:  agrunwald
6
- * @since:   2016-03-07
7
- *
8
- */
3
+     * @package: chapi
4
+     *
5
+     * @author:  agrunwald
6
+     * @since:   2016-03-07
7
+     *
8
+     */
9 9
 
10 10
 namespace Chapi\Entity\Http;
11 11
 
Please login to merge, or discard this patch.