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 ( 66e381...a6fbdf )
by Bhaktaraz
01: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/Feed.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
     public function render()
32 32
     {
33 33
         $xml = new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8" ?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"  xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/">',
34
-            LIBXML_NOERROR | LIBXML_ERR_NONE | LIBXML_ERR_FATAL);
34
+            LIBXML_NOERROR|LIBXML_ERR_NONE|LIBXML_ERR_FATAL);
35 35
 
36 36
         foreach ($this->channels as $channel) {
37 37
             $toDom = dom_import_simplexml($xml);
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
@@ -198,7 +198,7 @@
 block discarded – undo
198 198
     public function asXML()
199 199
     {
200 200
         $xml = new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8" ?><channel></channel>',
201
-            LIBXML_NOERROR | LIBXML_ERR_NONE | LIBXML_ERR_FATAL);
201
+            LIBXML_NOERROR|LIBXML_ERR_NONE|LIBXML_ERR_FATAL);
202 202
         $xml->addChild('title', $this->title);
203 203
         $xml->addChild('link', $this->url);
204 204
         $xml->addChild('description', $this->description);
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/FacebookProductItem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -275,7 +275,7 @@
 block discarded – undo
275 275
      */
276 276
     public function asXML()
277 277
     {
278
-        $xml = new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8" ?><item></item>', LIBXML_NOERROR | LIBXML_ERR_NONE | LIBXML_ERR_FATAL);
278
+        $xml = new SimpleXMLElement('<?xml version="1.0" encoding="UTF-8" ?><item></item>', LIBXML_NOERROR|LIBXML_ERR_NONE|LIBXML_ERR_FATAL);
279 279
 
280 280
         $xml->addChild('g:id', $this->title, 'http://base.google.com/ns/1.0');
281 281
         $xml->addChild('g:title', $this->title, 'http://base.google.com/ns/1.0');
Please login to merge, or discard this patch.