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.
Test Setup Failed
Pull Request — develop (#8)
by
unknown
01:37
created
Helper/Data.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      */
50 50
     public function getThirdPartyActive()
51 51
     {
52
-        if ( ! isset( $this->thirdPartyActive) ) {
52
+        if ( ! isset($this->thirdPartyActive)) {
53 53
             $this->thirdPartyActive = $this->scopeConfig->getValue(self::XML_PATH_CUSTOMER_THIRD_PARTY) ? true : false;
54 54
         }
55 55
         return $this->thirdPartyActive;
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      */
62 62
     public function getPersonnalizedSuggestionsActive()
63 63
     {
64
-        if ( ! isset( $this->personnalizedSuggestionsActive) ) {
64
+        if ( ! isset($this->personnalizedSuggestionsActive)) {
65 65
             $this->personnalizedSuggestionsActive = $this->scopeConfig->getValue(self::XML_PATH_CUSTOMER_PERSONNALIZED_SUGGESTIONS) ? true : false;
66 66
         }
67 67
         return $this->personnalizedSuggestionsActive;
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      */
74 74
     public function getAccountDeletionActive()
75 75
     {
76
-        if ( ! isset( $this->accountDeletionActive) ) {
76
+        if ( ! isset($this->accountDeletionActive)) {
77 77
             $this->accountDeletionActive = $this->scopeConfig->getValue(self::XML_PATH_CUSTOMER_ACCOUNT_DELETION) ? true : false;
78 78
         }
79 79
         return $this->accountDeletionActive;
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
      */
86 86
     public function getExportActive()
87 87
     {
88
-        if ( ! isset( $this->exportActive) ) {
88
+        if ( ! isset($this->exportActive)) {
89 89
             $this->exportActive = $this->scopeConfig->getValue(self::XML_PATH_CUSTOMER_EXPORT) ? true : false;
90 90
         }
91 91
         return $this->exportActive;
Please login to merge, or discard this patch.