Completed
Pull Request — master (#28)
by Andreas
01:43
created
src/Parser/PapercallIo/OpeningDate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     public function parse($dom, $xpath)
42 42
     {
43 43
         $openingDate = $xpath->query("//span[text()='Openend on:']/following-sibling::strong");
44
-        if (! $openingDate || $openingDate->length == 0) {
44
+        if (!$openingDate || $openingDate->length == 0) {
45 45
             throw new \UnexpectedValueException('No CfP-Open Date found');
46 46
         }
47 47
 
Please login to merge, or discard this patch.
src/Parser/PapercallIoParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
         do {
66 66
             $dom = new DOMDocument('1.0', 'UTF-8');
67 67
             libxml_use_internal_errors(true);
68
-            $uri = sprintf($this->uri, $i+1);
68
+            $uri = sprintf($this->uri, $i + 1);
69 69
             var_dump($uri);
70 70
             $dom->loadHTMLFile($uri);
71 71
             libxml_use_internal_errors(false);
Please login to merge, or discard this patch.