Passed
Push — master ( 8e4c14...93bf08 )
by smiley
06:58
created
src/Node/PrototypeElement.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
  * @property bool   $schemaTypeInfo
17 17
  * @property string $tagName
18 18
  */
19
-interface PrototypeElement extends PrototypeTraversal{
19
+interface PrototypeElement extends PrototypeTraversal {
20 20
 
21 21
 	/**
22 22
 	 * @link http://api.prototypejs.org/dom/Element/wrap/
Please login to merge, or discard this patch.
src/Node/PrototypeNode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
  * @property string                                $baseURI
33 33
  * @property string                                $textContent
34 34
  */
35
-interface PrototypeNode{
35
+interface PrototypeNode {
36 36
 
37 37
 	/**
38 38
 	 * @link http://api.prototypejs.org/dom/Element/recursivelyCollect/
Please login to merge, or discard this patch.
src/Node/CharacterData.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,6 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\PrototypeDOM\Node;
14 14
 
15
-class CharacterData extends \DOMCharacterData implements PrototypeElement{
15
+class CharacterData extends \DOMCharacterData implements PrototypeElement {
16 16
 	use PrototypeElementTrait;
17 17
 }
Please login to merge, or discard this patch.
src/Node/CdataSection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,6 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\PrototypeDOM\Node;
14 14
 
15
-class CdataSection extends \DOMCdataSection implements PrototypeNode{
15
+class CdataSection extends \DOMCdataSection implements PrototypeNode {
16 16
 	use PrototypeNodeTrait;
17 17
 }
Please login to merge, or discard this patch.
src/Node/ProcessingInstruction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,6 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\PrototypeDOM\Node;
14 14
 
15
-class ProcessingInstruction extends \DOMProcessingInstruction implements PrototypeNode{
15
+class ProcessingInstruction extends \DOMProcessingInstruction implements PrototypeNode {
16 16
 	use PrototypeNodeTrait;
17 17
 }
Please login to merge, or discard this patch.
src/Node/DocumentFragment.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,6 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\PrototypeDOM\Node;
14 14
 
15
-class DocumentFragment extends \DOMDocumentFragment implements PrototypeElement{
15
+class DocumentFragment extends \DOMDocumentFragment implements PrototypeElement {
16 16
 	use PrototypeElementTrait;
17 17
 }
Please login to merge, or discard this patch.
src/Node/Comment.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,6 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\PrototypeDOM\Node;
14 14
 
15
-class Comment extends \DOMComment implements PrototypeNode{
15
+class Comment extends \DOMComment implements PrototypeNode {
16 16
 	use PrototypeNodeTrait;
17 17
 }
Please login to merge, or discard this patch.
src/Node/Entity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,6 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\PrototypeDOM\Node;
14 14
 
15
-class Entity extends \DOMEntity implements PrototypeNode{
15
+class Entity extends \DOMEntity implements PrototypeNode {
16 16
 	use PrototypeNodeTrait;
17 17
 }
Please login to merge, or discard this patch.
src/Node/Text.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,6 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace chillerlan\PrototypeDOM\Node;
14 14
 
15
-class Text extends \DOMText implements PrototypeElement{
15
+class Text extends \DOMText implements PrototypeElement {
16 16
 	use PrototypeElementTrait;
17 17
 }
Please login to merge, or discard this patch.