Passed
Push — master ( c3a406...f1e353 )
by Jakob
01:46
created
src/Parser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace JSKOS\RDF;
4 4
 
Please login to merge, or discard this patch.
src/Mapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace JSKOS\RDF;
4 4
 
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
             $rdf = \EasyRdf_Graph::newAndLoad($url, $format);
181 181
             if ($forceHttp) {
182 182
                 $turtle = $rdf->serialise('turtle');
183
-                $turtle = str_replace("<https://","<http://", $turtle);
183
+                $turtle = str_replace("<https://", "<http://", $turtle);
184 184
                 $graph = new \EasyRdf_Graph();
185 185
                 $graph->parse($turtle, 'turtle');
186 186
                 $rdf = $graph;
Please login to merge, or discard this patch.