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
Push — master ( e180b5...a6bf18 )
by Marc
06:03
created
src/Component/Command/JobUtilsInterface.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-09-02
7
- */
3
+     * @package: chapi
4
+     *
5
+     * @author:  msiebeneicher
6
+     * @since:   2015-09-02
7
+     */
8 8
 
9 9
 namespace Chapi\Component\Command;
10 10
 
Please login to merge, or discard this patch.
src/Component/Comparison/DiffCompareInterface.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-30
7
- *
8
- */
3
+     * @package: chapi
4
+     *
5
+     * @author:  msiebeneicher
6
+     * @since:   2015-07-30
7
+     *
8
+     */
9 9
 namespace Chapi\Component\Comparison;
10 10
 
11 11
 
Please login to merge, or discard this patch.
src/Component/DatePeriod/DatePeriodFactory.php 2 patches
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -38,8 +38,7 @@  discard block
 block discarded – undo
38 38
         try
39 39
         {
40 40
             return self::$aIso8601Entity[$_sKey] = new Iso8601Entity($sIso8601);
41
-        }
42
-        catch (\InvalidArgumentException $_oException)
41
+        } catch (\InvalidArgumentException $_oException)
43 42
         {
44 43
             throw new DatePeriodException(sprintf("Can't init Iso8601Entity for '%s' iso 8601 string.", $sIso8601), 1, $_oException);
45 44
         }
@@ -58,8 +57,7 @@  discard block
 block discarded – undo
58 57
         {
59 58
             $_oDateStart = new \DateTime(str_replace('Z', '', $_oIso8601Entity->sStartTime));
60 59
             $_oDateStart->setTimezone(new \DateTimeZone($sTimeZone));
61
-        }
62
-        else
60
+        } else
63 61
         {
64 62
             $_oDateStart = new \DateTime($_oIso8601Entity->sStartTime);
65 63
         }
Please login to merge, or discard this 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\JobRepository;
Please login to merge, or discard this patch.
src/Component/Http/HttpGuzzlClient.php 3 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,7 @@
 block discarded – undo
51 51
             );
52 52
 
53 53
             return new HttpGuzzlResponse($_oResponse);
54
-        }
55
-        catch (\Exception $oException)
54
+        } catch (\Exception $oException)
56 55
         {
57 56
             throw new HttpConnectionException(
58 57
                 sprintf('Can\'t get response from "%s"', $this->oGuzzelClient->getBaseUrl() . $sUrl),
Please login to merge, or discard this 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-28
7
- *
8
- */
3
+     * @package: chapi
4
+     *
5
+     * @author:  msiebeneicher
6
+     * @since:   2015-07-28
7
+     *
8
+     */
9 9
 
10 10
 namespace Chapi\Service\JobRepository;
11 11
 
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
 
10 10
 namespace Chapi\Component\Http;
11 11
 
12
-use Chapi\Exception\HttpConnectionException;
13 12
 use Chapi\Entity\Http\AuthEntity;
13
+use Chapi\Exception\HttpConnectionException;
14 14
 use GuzzleHttp\ClientInterface;
15 15
 
16 16
 class HttpGuzzlClient implements HttpClientInterface
Please login to merge, or discard this patch.
src/Entity/Chronos/JobEntity.php 2 patches
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -87,8 +87,7 @@  discard block
 block discarded – undo
87 87
                     $this->{$_sKey} = $_mValue;
88 88
                 }
89 89
             }
90
-        }
91
-        else
90
+        } else
92 91
         {
93 92
             throw new \InvalidArgumentException(sprintf('Argument 1 passed to "%s" must be an array or object', __METHOD__));
94 93
         }
@@ -136,8 +135,7 @@  discard block
 block discarded – undo
136 135
         if (!empty($this->schedule))
137 136
         {
138 137
             unset($_aReturn['parents']);
139
-        }
140
-        else
138
+        } else
141 139
         {
142 140
             unset($_aReturn['schedule']);
143 141
             unset($_aReturn['scheduleTimeZone']);
Please login to merge, or discard this 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-29
7
- *
8
- */
3
+     * @package: chapi
4
+     *
5
+     * @author:  msiebeneicher
6
+     * @since:   2015-07-29
7
+     *
8
+     */
9 9
 
10 10
 
11 11
 namespace Chapi\Service\JobRepository;
Please login to merge, or discard this patch.
src/Entity/Chronos/JobEntityInterface.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-09-10
7
- */
3
+     * @package: chapi
4
+     *
5
+     * @author:  msiebeneicher
6
+     * @since:   2015-09-10
7
+     */
8 8
 
9 9
 
10 10
 namespace Chapi\Entity\Chronos;
Please login to merge, or discard this patch.
src/Entity/Logger/VerbosityLevelMap.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package: chapi
4
- *
5
- * @author:  msiebeneicher
6
- * @since:   2015-08-23
7
- *
8
- * @link:    https://github.com/msiebeneicher/chapi/issues/18
9
- */
3
+     * @package: chapi
4
+     *
5
+     * @author:  msiebeneicher
6
+     * @since:   2015-08-23
7
+     *
8
+     * @link:    https://github.com/msiebeneicher/chapi/issues/18
9
+     */
10 10
 
11 11
 namespace Chapi\Entity\Logger;
12 12
 
Please login to merge, or discard this patch.
src/Exception/ApiClientException.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-04
7
- */
3
+     * @package: chapi
4
+     *
5
+     * @author:  msiebeneicher
6
+     * @since:   2015-08-04
7
+     */
8 8
 
9 9
 
10 10
 namespace Chapi\Exception;
Please login to merge, or discard this patch.
src/Service/Chronos/JobStatsServiceInterface.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @package: chapi
4
- *
5
- * @author:  msiebeneicher
6
- * @since:   2015-09-09
7
- *
8
- * @link:    https://github.com/msiebeneicher/chapi/issues/24
9
- */
3
+     * @package: chapi
4
+     *
5
+     * @author:  msiebeneicher
6
+     * @since:   2015-09-09
7
+     *
8
+     * @link:    https://github.com/msiebeneicher/chapi/issues/24
9
+     */
10 10
 
11 11
 namespace Chapi\Service\Chronos;
12 12
 
Please login to merge, or discard this patch.