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 ( f8b665...66e381 )
by Bhaktaraz
02:54
created
Tests/Bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,5 +4,5 @@
 block discarded – undo
4 4
 require_once 'Vendor/autoload.php';
5 5
 
6 6
 // Load test target classes
7
-spl_autoload_register(function($c) { @include_once strtr($c, '\\_', '//').'.php'; });
8
-set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__DIR__).'/Source');
9 7
\ No newline at end of file
8
+spl_autoload_register(function($c) { @include_once strtr($c, '\\_', '//') . '.php'; });
9
+set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__DIR__) . '/Source');
10 10
\ No newline at end of file
Please login to merge, or discard this patch.
Source/Bhaktaraz/RSSGenerator/Item.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@
 block discarded – undo
171 171
     public function asXML()
172 172
     {
173 173
         $xml = new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8" ?><item></item>',
174
-            LIBXML_NOERROR | LIBXML_ERR_NONE | LIBXML_ERR_FATAL);
174
+            LIBXML_NOERROR|LIBXML_ERR_NONE|LIBXML_ERR_FATAL);
175 175
         $xml->addChild('title', $this->title);
176 176
         $xml->addChild('link', $this->url);
177 177
         if ($this->pubDate !== null) {
Please login to merge, or discard this patch.
Source/Bhaktaraz/RSSGenerator/Channel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@
 block discarded – undo
171 171
     public function asXML()
172 172
     {
173 173
         $xml = new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8" ?><item></item>',
174
-            LIBXML_NOERROR | LIBXML_ERR_NONE | LIBXML_ERR_FATAL);
174
+            LIBXML_NOERROR|LIBXML_ERR_NONE|LIBXML_ERR_FATAL);
175 175
         $xml->addChild('title', $this->title);
176 176
         $xml->addChild('link', $this->url);
177 177
         if ($this->pubDate !== null) {
Please login to merge, or discard this patch.
Source/Bhaktaraz/RSSGenerator/Feed.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@
 block discarded – undo
171 171
     public function asXML()
172 172
     {
173 173
         $xml = new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8" ?><item></item>',
174
-            LIBXML_NOERROR | LIBXML_ERR_NONE | LIBXML_ERR_FATAL);
174
+            LIBXML_NOERROR|LIBXML_ERR_NONE|LIBXML_ERR_FATAL);
175 175
         $xml->addChild('title', $this->title);
176 176
         $xml->addChild('link', $this->url);
177 177
         if ($this->pubDate !== null) {
Please login to merge, or discard this patch.