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.
Passed
Branch master (970ea7)
by Anton
02:59
created
src/Kachit/Helper/StringHelperTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      * @return StringHelper
21 21
      */
22 22
     protected function getStringHelper() {
23
-        if(empty($this->StringHelper)) {
23
+        if (empty($this->StringHelper)) {
24 24
             $this->StringHelper = new StringHelper();
25 25
         }
26 26
         return $this->StringHelper;
Please login to merge, or discard this patch.
src/Kachit/Helper/DateTimeHelperTrait.php 2 patches
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
- * DateTime helper trait
4
- *
5
- * @author Kachit
6
- * @package Kachit\Helper
7
- */
3
+     * DateTime helper trait
4
+     *
5
+     * @author Kachit
6
+     * @package Kachit\Helper
7
+     */
8 8
 namespace Kachit\Helper;
9 9
 
10 10
 trait DateTimeHelperTrait {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      * @return DateTimeHelper
21 21
      */
22 22
     protected function getDateTimeHelper() {
23
-        if(empty($this->DateTimeHelper)) {
23
+        if (empty($this->DateTimeHelper)) {
24 24
             $this->DateTimeHelper = new DateTimeHelper();
25 25
         }
26 26
         return $this->DateTimeHelper;
Please login to merge, or discard this patch.
src/Kachit/Helper/JsonHelper.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
- * Helper for works with json serializes
4
- *
5
- * @author Kachit
6
- * @package Kachit\Helper
7
- */
3
+     * Helper for works with json serializes
4
+     *
5
+     * @author Kachit
6
+     * @package Kachit\Helper
7
+     */
8 8
 namespace Kachit\Helper;
9 9
 
10 10
 use Kachit\Helper\Json\Encoder;
Please login to merge, or discard this patch.
src/Kachit/Helper/StringHelper.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
- * String helper
4
- *
5
- * @author Kachit
6
- * @package Kachit\Helper
7
- */
3
+     * String helper
4
+     *
5
+     * @author Kachit
6
+     * @package Kachit\Helper
7
+     */
8 8
 namespace Kachit\Helper;
9 9
 
10 10
 class StringHelper {
Please login to merge, or discard this patch.
src/Kachit/Helper/Json/Decoder.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Decoder
4
- *
5
- * @author Kachit
6
- */
3
+     * Decoder
4
+     *
5
+     * @author Kachit
6
+     */
7 7
 namespace Kachit\Helper\Json;
8 8
 
9 9
 class Decoder extends AbstractJson {
Please login to merge, or discard this patch.
src/Kachit/Helper/Json/Encoder.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Encoder
4
- *
5
- * @author Kachit
6
- */
3
+     * Encoder
4
+     *
5
+     * @author Kachit
6
+     */
7 7
 namespace Kachit\Helper\Json;
8 8
 
9 9
 class Encoder extends AbstractJson {
Please login to merge, or discard this patch.
src/Kachit/Helper/Json/AbstractJson.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
- * AbstractJson
4
- *
5
- * @author Kachit
6
- * @package Kachit\Helper\Json
7
- */
3
+     * AbstractJson
4
+     *
5
+     * @author Kachit
6
+     * @package Kachit\Helper\Json
7
+     */
8 8
 namespace Kachit\Helper\Json;
9 9
 
10 10
 class AbstractJson {
Please login to merge, or discard this patch.
src/Kachit/Helper/DateTimeHelper.php 2 patches
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
- * Helper for works with date and time
4
- *
5
- * @author Kachit
6
- * @package Kachit\Helper
7
- */
3
+     * Helper for works with date and time
4
+     *
5
+     * @author Kachit
6
+     * @package Kachit\Helper
7
+     */
8 8
 namespace Kachit\Helper;
9 9
 
10 10
 class DateTimeHelper {
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         }
40 40
         $dates = [];
41 41
         $current = $startTimestamp;
42
-        while($current <= $endTimestamp) {
42
+        while ($current <= $endTimestamp) {
43 43
             $dates[] = ($format) ? date($format, $current) : $current;
44 44
             $current += $step;
45 45
         }
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
             throw new \Exception('Dates interval is not valid');
63 63
         }
64 64
         $current = $startTimestamp;
65
-        while($current <= $endTimestamp) {
65
+        while ($current <= $endTimestamp) {
66 66
             $function($current);
67 67
             $current += $step;
68 68
         }
Please login to merge, or discard this patch.
src/Kachit/Helper/ObjectConverterTrait.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Object converter trait
4
- *
5
- * @author Kachit
6
- */
3
+     * Object converter trait
4
+     *
5
+     * @author Kachit
6
+     */
7 7
 namespace Kachit\Helper;
8 8
 
9 9
 trait ObjectConverterTrait {
Please login to merge, or discard this patch.