Completed
Pull Request — master (#28)
by Andreas
02:06
created
src/Parser/PapercallIo/ClosingDate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     {
51 51
         $xpath = new DOMXPath($node->ownerDocument);
52 52
         $closingDate = $xpath->query(".//time/@datetime", $node);
53
-        if (! $closingDate || $closingDate->length == 0) {
53
+        if (!$closingDate || $closingDate->length == 0) {
54 54
             throw new InvalidArgumentException('The CfP does not seem to have a closing date');
55 55
         }
56 56
 
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
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
         do {
67 67
             $dom = new DOMDocument('1.0', 'UTF-8');
68 68
             libxml_use_internal_errors(true);
69
-            $uri = sprintf($this->uri, $i+1);
69
+            $uri = sprintf($this->uri, $i + 1);
70 70
             $dom->loadHTMLFile($uri);
71 71
             libxml_use_internal_errors(false);
72 72
             $dom->preserveWhiteSpace = false;
Please login to merge, or discard this patch.