@@ -50,7 +50,7 @@ |
||
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 |
@@ -66,7 +66,7 @@ |
||
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; |