Completed
Push — master ( 426812...d1ad50 )
by Yann
02:14
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 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use \DOMNode;
6 6
 use \DOMElement;
7 7
 use \DOMNamedNodeMap;
8
-use OpenMindParser\Exceptions\InvalidNodeNameException;
9 8
 
10 9
 /*Object that represent a Node as the tag element in the openMind file.*/
11 10
 class Node 
Please login to merge, or discard this patch.
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -352,7 +352,6 @@
 block discarded – undo
352 352
 	/**
353 353
 	 * Return the list of children of the current node.
354 354
 	 * 
355
-	 * @param NodeList $children : The list of children node.
356 355
 	 */
357 356
 	public function getChildren() {
358 357
 		return $this->children;
Please login to merge, or discard this patch.
src/Parser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
 	/**
119 119
 	 * For each attribute whom the name is the keys of $availableAttributes, its value will be put in the matching attribute.
120 120
 	 * 
121
-	 * @param DOMNamedNodeMap $nodeAttributes : The list of attributes of the current node to fill the Node object.
121
+	 * @param DOMNamedNodeMap $nodeAtributes : The list of attributes of the current node to fill the Node object.
122 122
 	 * @param array $availableAttributes : One of the static array of this class to describe the list of known attributes.
123 123
 	 * @param Node $node : The Node object to fill in.
124 124
 	 */
Please login to merge, or discard this patch.
usage/SampleGenericHTMLConverter.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use OpenMindParser\Converters\Model\AbstractConverter;
6 6
 use OpenMindParser\Models\Document;
7 7
 use OpenMindParser\Models\Node;
8
-use OpenMindParser\Parser;
9 8
 use \DOMDocument;
10 9
 
11 10
 /*A singleton to convert a document tree (object Document) in a HTML tree following few options.*/
Please login to merge, or discard this patch.