Completed
Push — master ( a1ee40...42cbd3 )
by Yann
01:55
created
src/Converters/Model/AbstractConverter.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,6 @@
 block discarded – undo
38 38
 	/**
39 39
 	 * Abstract class to actually perform the conversion from the Document instance passed in parameter.
40 40
 	 * 
41
-	 * @param mixed $data : The data to convert. Here : a string as the file path or the Document instance.
42 41
 	 * @param array $options : An array of options for the conversion.
43 42
 	 * 
44 43
 	 * @return mixed : The result of the conversion.
Please login to merge, or discard this patch.
src/Models/Node.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -363,11 +363,9 @@
 block discarded – undo
363 363
 					$newValue[] = $node->toArray();
364 364
 				}
365 365
 				$value = $newValue;
366
-			}
367
-			elseif($value instanceof Icon) {
366
+			} elseif($value instanceof Icon) {
368 367
 				$value = $value->getFilePath();
369
-			}
370
-			elseif($value instanceof DOMElement) {
368
+			} elseif($value instanceof DOMElement) {
371 369
 				return;
372 370
 			}
373 371
 			$array[$key] = $value;
Please login to merge, or discard this patch.