@@ -41,7 +41,7 @@ |
||
| 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 | |
@@ -65,7 +65,7 @@ |
||
| 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); |