GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( d6ed85...1d3946 )
by
unknown
06:08 queued 18s
created
src/AttributeMatcher.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -25,14 +25,14 @@  discard block
 block discarded – undo
25 25
 	 *
26 26
 	 * @return self
27 27
 	 */
28
-	public static function withAttribute( $attributeName ) {
29
-		return new static( Util::wrapValueWithIsEqual( $attributeName ) );
28
+	public static function withAttribute($attributeName) {
29
+		return new static(Util::wrapValueWithIsEqual($attributeName));
30 30
 	}
31 31
 
32 32
 	/**
33 33
 	 * @param Matcher $attributeNameMatcher
34 34
 	 */
35
-	public function __construct( Matcher $attributeNameMatcher ) {
35
+	public function __construct(Matcher $attributeNameMatcher) {
36 36
 		parent::__construct();
37 37
 
38 38
 		$this->attributeNameMatcher = $attributeNameMatcher;
@@ -43,20 +43,20 @@  discard block
 block discarded – undo
43 43
 	 *
44 44
 	 * @return AttributeMatcher
45 45
 	 */
46
-	public function havingValue( $value ) {
46
+	public function havingValue($value) {
47 47
 		// TODO: Throw exception if value is set
48 48
 		$result = clone $this;
49
-		$result->valueMatcher = Util::wrapValueWithIsEqual( $value );
49
+		$result->valueMatcher = Util::wrapValueWithIsEqual($value);
50 50
 
51 51
 		return $result;
52 52
 	}
53 53
 
54
-	public function describeTo( Description $description ) {
55
-		$description->appendText( 'with attribute ' )
56
-			->appendDescriptionOf( $this->attributeNameMatcher );
57
-		if ( $this->valueMatcher ) {
58
-			$description->appendText( ' having value ' )
59
-				->appendDescriptionOf( $this->valueMatcher );
54
+	public function describeTo(Description $description) {
55
+		$description->appendText('with attribute ')
56
+			->appendDescriptionOf($this->attributeNameMatcher);
57
+		if ($this->valueMatcher) {
58
+			$description->appendText(' having value ')
59
+				->appendDescriptionOf($this->valueMatcher);
60 60
 		}
61 61
 	}
62 62
 
@@ -70,15 +70,15 @@  discard block
 block discarded – undo
70 70
 		$item, Description $mismatchDescription
71 71
 	) {
72 72
 		/** @var DOMAttr $attribute */
73
-		foreach ( $item->attributes as $attribute ) {
74
-			if ( $this->valueMatcher ) {
73
+		foreach ($item->attributes as $attribute) {
74
+			if ($this->valueMatcher) {
75 75
 				if (
76
-					$this->attributeNameMatcher->matches( $attribute->name )
77
-					&& $this->valueMatcher->matches( $attribute->value )
76
+					$this->attributeNameMatcher->matches($attribute->name)
77
+					&& $this->valueMatcher->matches($attribute->value)
78 78
 				) {
79 79
 					return true;
80 80
 				}
81
-			} elseif ( $this->attributeNameMatcher->matches( $attribute->name ) ) {
81
+			} elseif ($this->attributeNameMatcher->matches($attribute->name)) {
82 82
 				return true;
83 83
 			}
84 84
 		}
Please login to merge, or discard this patch.
src/TagMatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 abstract class TagMatcher extends TypeSafeDiagnosingMatcher {
9 9
 
10 10
 	public function __construct() {
11
-		parent::__construct( self::TYPE_OBJECT, DOMElement::class );
11
+		parent::__construct(self::TYPE_OBJECT, DOMElement::class);
12 12
 	}
13 13
 
14 14
 }
Please login to merge, or discard this patch.
src/ComplexTagMatcher.php 1 patch
Spacing   +55 added lines, -55 removed lines patch added patch discarded remove patch
@@ -33,27 +33,27 @@  discard block
 block discarded – undo
33 33
 	 *
34 34
 	 * @return self
35 35
 	 */
36
-	public static function tagMatchingOutline( $htmlOutline ) {
37
-		return new self( $htmlOutline );
36
+	public static function tagMatchingOutline($htmlOutline) {
37
+		return new self($htmlOutline);
38 38
 	}
39 39
 
40 40
 	/**
41 41
 	 * @param string $tagHtmlRepresentation
42 42
 	 */
43
-	public function __construct( $tagHtmlRepresentation ) {
43
+	public function __construct($tagHtmlRepresentation) {
44 44
 		parent::__construct();
45 45
 
46 46
 		$this->tagHtmlOutline = $tagHtmlRepresentation;
47
-		$this->matcher = $this->createMatcherFromHtml( $tagHtmlRepresentation );
47
+		$this->matcher = $this->createMatcherFromHtml($tagHtmlRepresentation);
48 48
 	}
49 49
 
50 50
 	/**
51 51
 	 * @param Description $description
52 52
 	 */
53
-	public function describeTo( Description $description ) {
54
-		$description->appendText( 'tag matching outline `' )
55
-			->appendText( $this->tagHtmlOutline )
56
-			->appendText( '` ' );
53
+	public function describeTo(Description $description) {
54
+		$description->appendText('tag matching outline `')
55
+			->appendText($this->tagHtmlOutline)
56
+			->appendText('` ');
57 57
 	}
58 58
 
59 59
 	/**
@@ -65,13 +65,13 @@  discard block
 block discarded – undo
65 65
 	protected function matchesSafelyWithDiagnosticDescription(
66 66
 		$item, Description $mismatchDescription
67 67
 	) {
68
-		if ( $this->matcher->matches( $item ) ) {
68
+		if ($this->matcher->matches($item)) {
69 69
 			return true;
70 70
 		}
71 71
 
72
-		$mismatchDescription->appendText( 'was `' )
73
-			->appendText( $this->elementToString( $item ) )
74
-			->appendText( '`' );
72
+		$mismatchDescription->appendText('was `')
73
+			->appendText($this->elementToString($item))
74
+			->appendText('`');
75 75
 		return false;
76 76
 	}
77 77
 
@@ -80,19 +80,19 @@  discard block
 block discarded – undo
80 80
 	 *
81 81
 	 * @return Matcher
82 82
 	 */
83
-	private function createMatcherFromHtml( $htmlOutline ) {
84
-		$document = $this->parseHtml( $htmlOutline );
85
-		$targetTag = $this->getSingleTagFromThe( $document );
83
+	private function createMatcherFromHtml($htmlOutline) {
84
+		$document = $this->parseHtml($htmlOutline);
85
+		$targetTag = $this->getSingleTagFromThe($document);
86 86
 
87
-		$this->assertTagDoesNotContainChildren( $targetTag );
87
+		$this->assertTagDoesNotContainChildren($targetTag);
88 88
 
89
-		$attributeMatchers = $this->createAttributeMatchers( $htmlOutline, $targetTag );
90
-		$classMatchers = $this->createClassMatchers( $targetTag );
89
+		$attributeMatchers = $this->createAttributeMatchers($htmlOutline, $targetTag);
90
+		$classMatchers = $this->createClassMatchers($targetTag);
91 91
 
92 92
 		return AllOf::allOf(
93
-			new TagNameMatcher( IsEqual::equalTo( $targetTag->tagName ) ),
94
-			call_user_func_array( [ AllOf::class, 'allOf' ], $attributeMatchers ),
95
-			call_user_func_array( [ AllOf::class, 'allOf' ], $classMatchers )
93
+			new TagNameMatcher(IsEqual::equalTo($targetTag->tagName)),
94
+			call_user_func_array([AllOf::class, 'allOf'], $attributeMatchers),
95
+			call_user_func_array([AllOf::class, 'allOf'], $classMatchers)
96 96
 		);
97 97
 	}
98 98
 
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 	 *
102 102
 	 * @return bool
103 103
 	 */
104
-	private function isUnknownTagError( \LibXMLError $error ) {
104
+	private function isUnknownTagError(\LibXMLError $error) {
105 105
 		return $error->code === self::XML_UNKNOWN_TAG_ERROR_CODE;
106 106
 	}
107 107
 
@@ -111,10 +111,10 @@  discard block
 block discarded – undo
111 111
 	 *
112 112
 	 * @return bool
113 113
 	 */
114
-	private function isBooleanAttribute( $inputHtml, $attributeName ) {
115
-		$quotedName = preg_quote( $attributeName, '/' );
114
+	private function isBooleanAttribute($inputHtml, $attributeName) {
115
+		$quotedName = preg_quote($attributeName, '/');
116 116
 
117
-		return !preg_match( "/\b{$quotedName}\s*=/ui", $inputHtml );
117
+		return !preg_match("/\b{$quotedName}\s*=/ui", $inputHtml);
118 118
 	}
119 119
 
120 120
 	/**
@@ -123,26 +123,26 @@  discard block
 block discarded – undo
123 123
 	 * @return DOMDocument
124 124
 	 * @throws InvalidArgumentException
125 125
 	 */
126
-	private function parseHtml( $html ) {
127
-		$internalErrors = libxml_use_internal_errors( true );
126
+	private function parseHtml($html) {
127
+		$internalErrors = libxml_use_internal_errors(true);
128 128
 		$document = new DOMDocument();
129 129
 
130 130
 		// phpcs:ignore Generic.PHP.NoSilencedErrors
131
-		if ( !@$document->loadHTML( $html ) ) {
132
-			throw new InvalidArgumentException( "There was some parsing error of `$html`" );
131
+		if (!@$document->loadHTML($html)) {
132
+			throw new InvalidArgumentException("There was some parsing error of `$html`");
133 133
 		}
134 134
 
135 135
 		$errors = libxml_get_errors();
136 136
 		libxml_clear_errors();
137
-		libxml_use_internal_errors( $internalErrors );
137
+		libxml_use_internal_errors($internalErrors);
138 138
 
139
-		foreach ( $errors as $error ) {
140
-			if ( $this->isUnknownTagError( $error ) ) {
139
+		foreach ($errors as $error) {
140
+			if ($this->isUnknownTagError($error)) {
141 141
 				continue;
142 142
 			}
143 143
 
144 144
 			throw new InvalidArgumentException(
145
-				'There was parsing error: ' . trim( $error->message ) . ' on line ' . $error->line
145
+				'There was parsing error: ' . trim($error->message) . ' on line ' . $error->line
146 146
 			);
147 147
 		}
148 148
 
@@ -155,22 +155,22 @@  discard block
 block discarded – undo
155 155
 	 * @return DOMElement
156 156
 	 * @throws InvalidArgumentException
157 157
 	 */
158
-	private function getSingleTagFromThe( DOMDocument $document ) {
159
-		$directChildren = $document->documentElement->childNodes->item( 0 )->childNodes;
158
+	private function getSingleTagFromThe(DOMDocument $document) {
159
+		$directChildren = $document->documentElement->childNodes->item(0)->childNodes;
160 160
 
161
-		if ( $directChildren->length !== 1 ) {
161
+		if ($directChildren->length !== 1) {
162 162
 			throw new InvalidArgumentException(
163 163
 				'Expected exactly 1 tag description, got ' . $directChildren->length
164 164
 			);
165 165
 		}
166 166
 
167 167
 		// @phan-suppress-next-line PhanTypeMismatchReturnNullable
168
-		return $directChildren->item( 0 );
168
+		return $directChildren->item(0);
169 169
 	}
170 170
 
171
-	private function assertTagDoesNotContainChildren( DOMElement $targetTag ) {
172
-		if ( $targetTag->childNodes->length > 0 ) {
173
-			throw new InvalidArgumentException( 'Nested elements are not allowed' );
171
+	private function assertTagDoesNotContainChildren(DOMElement $targetTag) {
172
+		if ($targetTag->childNodes->length > 0) {
173
+			throw new InvalidArgumentException('Nested elements are not allowed');
174 174
 		}
175 175
 	}
176 176
 
@@ -180,18 +180,18 @@  discard block
 block discarded – undo
180 180
 	 *
181 181
 	 * @return AttributeMatcher[]
182 182
 	 */
183
-	private function createAttributeMatchers( $inputHtml, DOMElement $targetTag ) {
183
+	private function createAttributeMatchers($inputHtml, DOMElement $targetTag) {
184 184
 		$attributeMatchers = [];
185 185
 		/** @var \DOMAttr $attribute */
186
-		foreach ( $targetTag->attributes as $attribute ) {
187
-			if ( $attribute->name === 'class' ) {
186
+		foreach ($targetTag->attributes as $attribute) {
187
+			if ($attribute->name === 'class') {
188 188
 				continue;
189 189
 			}
190 190
 
191
-			$attributeMatcher = new AttributeMatcher( IsEqual::equalTo( $attribute->name ) );
192
-			if ( !$this->isBooleanAttribute( $inputHtml, $attribute->name ) ) {
191
+			$attributeMatcher = new AttributeMatcher(IsEqual::equalTo($attribute->name));
192
+			if (!$this->isBooleanAttribute($inputHtml, $attribute->name)) {
193 193
 				$attributeMatcher = $attributeMatcher->havingValue(
194
-					IsEqual::equalTo( $attribute->value )
194
+					IsEqual::equalTo($attribute->value)
195 195
 				);
196 196
 			}
197 197
 
@@ -205,14 +205,14 @@  discard block
 block discarded – undo
205 205
 	 *
206 206
 	 * @return ClassMatcher[]
207 207
 	 */
208
-	private function createClassMatchers( DOMElement $targetTag ) {
208
+	private function createClassMatchers(DOMElement $targetTag) {
209 209
 		$classMatchers = [];
210
-		$classValue = $targetTag->getAttribute( 'class' );
211
-		foreach ( explode( ' ', $classValue ) as $expectedClass ) {
212
-			if ( $expectedClass === '' ) {
210
+		$classValue = $targetTag->getAttribute('class');
211
+		foreach (explode(' ', $classValue) as $expectedClass) {
212
+			if ($expectedClass === '') {
213 213
 				continue;
214 214
 			}
215
-			$classMatchers[] = new ClassMatcher( IsEqual::equalTo( $expectedClass ) );
215
+			$classMatchers[] = new ClassMatcher(IsEqual::equalTo($expectedClass));
216 216
 		}
217 217
 		return $classMatchers;
218 218
 	}
@@ -222,11 +222,11 @@  discard block
 block discarded – undo
222 222
 	 *
223 223
 	 * @return string
224 224
 	 */
225
-	private function elementToString( DOMElement $element ) {
225
+	private function elementToString(DOMElement $element) {
226 226
 		$newDocument = new DOMDocument();
227
-		$cloned = $element->cloneNode( true );
228
-		$newDocument->appendChild( $newDocument->importNode( $cloned, true ) );
229
-		return trim( $newDocument->saveHTML() );
227
+		$cloned = $element->cloneNode(true);
228
+		$newDocument->appendChild($newDocument->importNode($cloned, true));
229
+		return trim($newDocument->saveHTML());
230 230
 	}
231 231
 
232 232
 }
Please login to merge, or discard this patch.
src/DirectChildElementMatcher.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -15,19 +15,19 @@  discard block
 block discarded – undo
15 15
 	 */
16 16
 	private $matcher;
17 17
 
18
-	public static function havingDirectChild( ?Matcher $elementMatcher = null ) {
19
-		return new static( $elementMatcher );
18
+	public static function havingDirectChild(?Matcher $elementMatcher = null) {
19
+		return new static($elementMatcher);
20 20
 	}
21 21
 
22
-	public function __construct( ?Matcher $matcher = null ) {
23
-		parent::__construct( DOMNode::class );
22
+	public function __construct(?Matcher $matcher = null) {
23
+		parent::__construct(DOMNode::class);
24 24
 		$this->matcher = $matcher;
25 25
 	}
26 26
 
27
-	public function describeTo( Description $description ) {
28
-		$description->appendText( 'having direct child ' );
29
-		if ( $this->matcher ) {
30
-			$description->appendDescriptionOf( $this->matcher );
27
+	public function describeTo(Description $description) {
28
+		$description->appendText('having direct child ');
29
+		if ($this->matcher) {
30
+			$description->appendDescriptionOf($this->matcher);
31 31
 		}
32 32
 	}
33 33
 
@@ -40,32 +40,32 @@  discard block
 block discarded – undo
40 40
 	protected function matchesSafelyWithDiagnosticDescription(
41 41
 		$item, Description $mismatchDescription
42 42
 	) {
43
-		if ( $item instanceof DOMDocument ) {
44
-			$item = $item->documentElement->childNodes->item( 0 );
43
+		if ($item instanceof DOMDocument) {
44
+			$item = $item->documentElement->childNodes->item(0);
45 45
 		}
46 46
 		$directChildren = $item->childNodes;
47 47
 
48
-		if ( $directChildren->length === 0 ) {
49
-			$mismatchDescription->appendText( 'with no direct children' );
48
+		if ($directChildren->length === 0) {
49
+			$mismatchDescription->appendText('with no direct children');
50 50
 			return false;
51 51
 		}
52 52
 
53 53
 		$childWord = $directChildren->length === 1 ? 'child' : 'children';
54 54
 
55
-		$mismatchDescription->appendText( "with direct {$childWord} " );
55
+		$mismatchDescription->appendText("with direct {$childWord} ");
56 56
 
57
-		if ( !$this->matcher ) {
57
+		if (!$this->matcher) {
58 58
 			return $directChildren->length !== 0;
59 59
 		}
60 60
 
61 61
 		$child = null;
62
-		foreach ( $directChildren as $child ) {
63
-			if ( $this->matcher->matches( $child ) ) {
62
+		foreach ($directChildren as $child) {
63
+			if ($this->matcher->matches($child)) {
64 64
 				return true;
65 65
 			}
66 66
 		}
67 67
 
68
-		$this->matcher->describeMismatch( $child, $mismatchDescription );
68
+		$this->matcher->describeMismatch($child, $mismatchDescription);
69 69
 
70 70
 		return false;
71 71
 	}
Please login to merge, or discard this patch.
src/HtmlMatcher.php 1 patch
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -26,18 +26,18 @@  discard block
 block discarded – undo
26 26
 	 *
27 27
 	 * @return self
28 28
 	 */
29
-	public static function htmlPiece( ?Matcher $elementMatcher = null ) {
30
-		return new static( $elementMatcher );
29
+	public static function htmlPiece(?Matcher $elementMatcher = null) {
30
+		return new static($elementMatcher);
31 31
 	}
32 32
 
33
-	private function __construct( ?Matcher $elementMatcher = null ) {
33
+	private function __construct(?Matcher $elementMatcher = null) {
34 34
 		$this->elementMatcher = $elementMatcher;
35 35
 	}
36 36
 
37
-	public function describeTo( Description $description ) {
38
-		$description->appendText( 'valid html piece ' );
39
-		if ( $this->elementMatcher ) {
40
-			$description->appendDescriptionOf( $this->elementMatcher );
37
+	public function describeTo(Description $description) {
38
+		$description->appendText('valid html piece ');
39
+		if ($this->elementMatcher) {
40
+			$description->appendDescriptionOf($this->elementMatcher);
41 41
 		}
42 42
 	}
43 43
 
@@ -47,47 +47,47 @@  discard block
 block discarded – undo
47 47
 	 *
48 48
 	 * @return bool
49 49
 	 */
50
-	protected function matchesWithDiagnosticDescription( $html, Description $mismatchDescription ) {
51
-		$internalErrors = libxml_use_internal_errors( true );
50
+	protected function matchesWithDiagnosticDescription($html, Description $mismatchDescription) {
51
+		$internalErrors = libxml_use_internal_errors(true);
52 52
 		libxml_clear_errors();
53 53
 		$document = new DOMDocument();
54 54
 
55
-		$html = $this->escapeScriptTagContents( $html );
55
+		$html = $this->escapeScriptTagContents($html);
56 56
 
57 57
 		// phpcs:ignore Generic.PHP.NoSilencedErrors
58
-		if ( !@$document->loadHTML( mb_convert_encoding( $html, 'HTML-ENTITIES', 'UTF-8' ) ) ) {
59
-			$mismatchDescription->appendText( 'there was some parsing error' );
58
+		if (!@$document->loadHTML(mb_convert_encoding($html, 'HTML-ENTITIES', 'UTF-8'))) {
59
+			$mismatchDescription->appendText('there was some parsing error');
60 60
 			return false;
61 61
 		}
62 62
 
63 63
 		$errors = libxml_get_errors();
64 64
 		libxml_clear_errors();
65
-		libxml_use_internal_errors( $internalErrors );
65
+		libxml_use_internal_errors($internalErrors);
66 66
 
67 67
 		$result = true;
68
-		foreach ( $errors as $error ) {
69
-			if ( $this->isUnknownTagError( $error ) ) {
68
+		foreach ($errors as $error) {
69
+			if ($this->isUnknownTagError($error)) {
70 70
 				continue;
71 71
 			}
72 72
 
73
-			$mismatchDescription->appendText( 'there was parsing error: ' )
74
-				->appendText( trim( $error->message ) )
75
-				->appendText( ' on line ' )
76
-				->appendText( (string)$error->line );
73
+			$mismatchDescription->appendText('there was parsing error: ')
74
+				->appendText(trim($error->message))
75
+				->appendText(' on line ')
76
+				->appendText((string)$error->line);
77 77
 			$result = false;
78 78
 		}
79 79
 
80
-		if ( !$result ) {
80
+		if (!$result) {
81 81
 			return false;
82 82
 		}
83
-		$mismatchDescription->appendText( 'valid html piece ' );
83
+		$mismatchDescription->appendText('valid html piece ');
84 84
 
85
-		if ( $this->elementMatcher ) {
86
-			$result = $this->elementMatcher->matches( $document );
87
-			$this->elementMatcher->describeMismatch( $document, $mismatchDescription );
85
+		if ($this->elementMatcher) {
86
+			$result = $this->elementMatcher->matches($document);
87
+			$this->elementMatcher->describeMismatch($document, $mismatchDescription);
88 88
 		}
89 89
 
90
-		$mismatchDescription->appendText( "\nActual html:\n" )->appendText( $html );
90
+		$mismatchDescription->appendText("\nActual html:\n")->appendText($html);
91 91
 
92 92
 		return $result;
93 93
 	}
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 	 *
98 98
 	 * @return bool
99 99
 	 */
100
-	private function isUnknownTagError( LibXMLError $error ) {
100
+	private function isUnknownTagError(LibXMLError $error) {
101 101
 		return $error->code === self::XML_UNKNOWN_TAG_ERROR_CODE;
102 102
 	}
103 103
 
@@ -106,10 +106,10 @@  discard block
 block discarded – undo
106 106
 	 *
107 107
 	 * @return string HTML
108 108
 	 */
109
-	private function escapeScriptTagContents( $html ) {
110
-		return preg_replace_callback( '#(<script.*>)(.*)(</script>)#isU', static function ( $matches ) {
111
-			return $matches[1] . str_replace( '</', '<\/', $matches[2] ) . $matches[3];
112
-		}, $html );
109
+	private function escapeScriptTagContents($html) {
110
+		return preg_replace_callback('#(<script.*>)(.*)(</script>)#isU', static function($matches) {
111
+			return $matches[1] . str_replace('</', '<\/', $matches[2]) . $matches[3];
112
+		}, $html);
113 113
 	}
114 114
 
115 115
 }
Please login to merge, or discard this patch.
src/XmlNodeRecursiveIterator.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -6,9 +6,9 @@  discard block
 block discarded – undo
6 6
 
7 7
 class XmlNodeRecursiveIterator extends \ArrayIterator {
8 8
 
9
-	public function __construct( \DOMNodeList $nodeList ) {
10
-		$queue = $this->addElementsToQueue( [], $nodeList );
11
-		parent::__construct( $queue );
9
+	public function __construct(\DOMNodeList $nodeList) {
10
+		$queue = $this->addElementsToQueue([], $nodeList);
11
+		parent::__construct($queue);
12 12
 	}
13 13
 
14 14
 	/**
@@ -17,12 +17,12 @@  discard block
 block discarded – undo
17 17
 	 *
18 18
 	 * @return DOMNode[] New queue
19 19
 	 */
20
-	private function addElementsToQueue( array $queue, \DOMNodeList $nodeList ) {
20
+	private function addElementsToQueue(array $queue, \DOMNodeList $nodeList) {
21 21
 		/** @var DOMNode $node */
22
-		foreach ( $nodeList as $node ) {
22
+		foreach ($nodeList as $node) {
23 23
 			$queue[] = $node;
24
-			if ( $node->childNodes !== null ) {
25
-				$queue = $this->addElementsToQueue( $queue, $node->childNodes );
24
+			if ($node->childNodes !== null) {
25
+				$queue = $this->addElementsToQueue($queue, $node->childNodes);
26 26
 			}
27 27
 		}
28 28
 
Please login to merge, or discard this patch.
src/TagNameMatcher.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -19,18 +19,18 @@  discard block
 block discarded – undo
19 19
 	 *
20 20
 	 * @return self
21 21
 	 */
22
-	public static function withTagName( $tagName ) {
23
-		return new static( Util::wrapValueWithIsEqual( $tagName ) );
22
+	public static function withTagName($tagName) {
23
+		return new static(Util::wrapValueWithIsEqual($tagName));
24 24
 	}
25 25
 
26
-	public function __construct( Matcher $tagNameMatcher ) {
26
+	public function __construct(Matcher $tagNameMatcher) {
27 27
 		parent::__construct();
28 28
 		$this->tagNameMatcher = $tagNameMatcher;
29 29
 	}
30 30
 
31
-	public function describeTo( Description $description ) {
32
-		$description->appendText( 'with tag name ' )
33
-			->appendDescriptionOf( $this->tagNameMatcher );
31
+	public function describeTo(Description $description) {
32
+		$description->appendText('with tag name ')
33
+			->appendDescriptionOf($this->tagNameMatcher);
34 34
 	}
35 35
 
36 36
 	/**
@@ -42,12 +42,12 @@  discard block
 block discarded – undo
42 42
 	protected function matchesSafelyWithDiagnosticDescription(
43 43
 		$item, Description $mismatchDescription
44 44
 	) {
45
-		if ( $this->tagNameMatcher->matches( $item->tagName ) ) {
45
+		if ($this->tagNameMatcher->matches($item->tagName)) {
46 46
 			return true;
47 47
 		}
48 48
 
49
-		$mismatchDescription->appendText( 'tag name ' );
50
-		$this->tagNameMatcher->describeMismatch( $item->tagName, $mismatchDescription );
49
+		$mismatchDescription->appendText('tag name ');
50
+		$this->tagNameMatcher->describeMismatch($item->tagName, $mismatchDescription);
51 51
 		return false;
52 52
 	}
53 53
 
Please login to merge, or discard this patch.
src/RootElementMatcher.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -19,19 +19,19 @@  discard block
 block discarded – undo
19 19
 	 *
20 20
 	 * @return static
21 21
 	 */
22
-	public static function havingRootElement( ?Matcher $tagMatcher = null ) {
23
-		return new static( $tagMatcher );
22
+	public static function havingRootElement(?Matcher $tagMatcher = null) {
23
+		return new static($tagMatcher);
24 24
 	}
25 25
 
26
-	public function __construct( ?Matcher $tagMatcher = null ) {
27
-		parent::__construct( self::TYPE_OBJECT, DOMDocument::class );
26
+	public function __construct(?Matcher $tagMatcher = null) {
27
+		parent::__construct(self::TYPE_OBJECT, DOMDocument::class);
28 28
 		$this->tagMatcher = $tagMatcher;
29 29
 	}
30 30
 
31
-	public function describeTo( Description $description ) {
32
-		$description->appendText( 'having root element ' );
33
-		if ( $this->tagMatcher ) {
34
-			$description->appendDescriptionOf( $this->tagMatcher );
31
+	public function describeTo(Description $description) {
32
+		$description->appendText('having root element ');
33
+		if ($this->tagMatcher) {
34
+			$description->appendDescriptionOf($this->tagMatcher);
35 35
 		}
36 36
 	}
37 37
 
@@ -44,24 +44,24 @@  discard block
 block discarded – undo
44 44
 	protected function matchesSafelyWithDiagnosticDescription(
45 45
 		$item, Description $mismatchDescription
46 46
 	) {
47
-		$DOMNodeList = $item->documentElement->childNodes->item( 0 )->childNodes;
48
-		if ( $DOMNodeList->length > 1 ) {
47
+		$DOMNodeList = $item->documentElement->childNodes->item(0)->childNodes;
48
+		if ($DOMNodeList->length > 1) {
49 49
 			// TODO Test this description
50
-			$mismatchDescription->appendText( 'having ' . $DOMNodeList->length . ' root elements ' );
50
+			$mismatchDescription->appendText('having ' . $DOMNodeList->length . ' root elements ');
51 51
 			return false;
52 52
 		}
53 53
 
54
-		$target = $DOMNodeList->item( 0 );
55
-		if ( !$target ) {
54
+		$target = $DOMNodeList->item(0);
55
+		if (!$target) {
56 56
 			// TODO Reproduce?
57
-			$mismatchDescription->appendText( 'having no root elements ' );
57
+			$mismatchDescription->appendText('having no root elements ');
58 58
 			return false;
59 59
 		}
60 60
 
61
-		if ( $this->tagMatcher ) {
62
-			$mismatchDescription->appendText( 'root element ' );
63
-			$this->tagMatcher->describeMismatch( $target, $mismatchDescription );
64
-			return $this->tagMatcher->matches( $target );
61
+		if ($this->tagMatcher) {
62
+			$mismatchDescription->appendText('root element ');
63
+			$this->tagMatcher->describeMismatch($target, $mismatchDescription);
64
+			return $this->tagMatcher->matches($target);
65 65
 		}
66 66
 
67 67
 		return true;
Please login to merge, or discard this patch.
src/functions.php 1 patch
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -11,88 +11,88 @@
 block discarded – undo
11 11
 use WMDE\HamcrestHtml\TagNameMatcher;
12 12
 use WMDE\HamcrestHtml\TextContentsMatcher;
13 13
 
14
-if ( !function_exists( 'htmlPiece' ) ) {
14
+if (!function_exists('htmlPiece')) {
15 15
 	/**
16 16
 	 * @param Matcher|null $elementMatcher
17 17
 	 *
18 18
 	 * @return HtmlMatcher
19 19
 	 */
20
-	function htmlPiece( ?Matcher $elementMatcher = null ) {
21
-		return HtmlMatcher::htmlPiece( $elementMatcher );
20
+	function htmlPiece(?Matcher $elementMatcher = null) {
21
+		return HtmlMatcher::htmlPiece($elementMatcher);
22 22
 	}
23 23
 }
24 24
 
25
-if ( !function_exists( 'havingRootElement' ) ) {
26
-	function havingRootElement( ?Matcher $matcher = null ) {
27
-		return RootElementMatcher::havingRootElement( $matcher );
25
+if (!function_exists('havingRootElement')) {
26
+	function havingRootElement(?Matcher $matcher = null) {
27
+		return RootElementMatcher::havingRootElement($matcher);
28 28
 	}
29 29
 }
30 30
 
31
-if ( !function_exists( 'havingDirectChild' ) ) {
32
-	function havingDirectChild( ?Matcher $elementMatcher = null ) {
33
-		return DirectChildElementMatcher::havingDirectChild( $elementMatcher );
31
+if (!function_exists('havingDirectChild')) {
32
+	function havingDirectChild(?Matcher $elementMatcher = null) {
33
+		return DirectChildElementMatcher::havingDirectChild($elementMatcher);
34 34
 	}
35 35
 }
36 36
 
37
-if ( !function_exists( 'havingChild' ) ) {
38
-	function havingChild( ?Matcher $elementMatcher = null ) {
39
-		return ChildElementMatcher::havingChild( $elementMatcher );
37
+if (!function_exists('havingChild')) {
38
+	function havingChild(?Matcher $elementMatcher = null) {
39
+		return ChildElementMatcher::havingChild($elementMatcher);
40 40
 	}
41 41
 }
42 42
 
43
-if ( !function_exists( 'withTagName' ) ) {
43
+if (!function_exists('withTagName')) {
44 44
 	/**
45 45
 	 * @param Matcher|string $tagName
46 46
 	 *
47 47
 	 * @return TagNameMatcher
48 48
 	 */
49
-	function withTagName( $tagName ) {
50
-		return TagNameMatcher::withTagName( $tagName );
49
+	function withTagName($tagName) {
50
+		return TagNameMatcher::withTagName($tagName);
51 51
 	}
52 52
 }
53 53
 
54
-if ( !function_exists( 'withAttribute' ) ) {
54
+if (!function_exists('withAttribute')) {
55 55
 	/**
56 56
 	 * @param Matcher|string $attributeName
57 57
 	 *
58 58
 	 * @return AttributeMatcher
59 59
 	 */
60
-	function withAttribute( $attributeName ) {
61
-		return AttributeMatcher::withAttribute( $attributeName );
60
+	function withAttribute($attributeName) {
61
+		return AttributeMatcher::withAttribute($attributeName);
62 62
 	}
63 63
 }
64 64
 
65
-if ( !function_exists( 'withClass' ) ) {
65
+if (!function_exists('withClass')) {
66 66
 	/**
67 67
 	 * @param Matcher|string $class
68 68
 	 *
69 69
 	 * @return ClassMatcher
70 70
 	 */
71
-	function withClass( $class ) {
71
+	function withClass($class) {
72 72
 		// TODO don't allow to call with empty string
73 73
 
74
-		return ClassMatcher::withClass( $class );
74
+		return ClassMatcher::withClass($class);
75 75
 	}
76 76
 }
77 77
 
78
-if ( !function_exists( 'havingTextContents' ) ) {
78
+if (!function_exists('havingTextContents')) {
79 79
 	/**
80 80
 	 * @param Matcher|string $text
81 81
 	 *
82 82
 	 * @return TextContentsMatcher
83 83
 	 */
84
-	function havingTextContents( $text ) {
85
-		return TextContentsMatcher::havingTextContents( $text );
84
+	function havingTextContents($text) {
85
+		return TextContentsMatcher::havingTextContents($text);
86 86
 	}
87 87
 }
88 88
 
89
-if ( !function_exists( 'tagMatchingOutline' ) ) {
89
+if (!function_exists('tagMatchingOutline')) {
90 90
 	/**
91 91
 	 * @param string $htmlOutline
92 92
 	 *
93 93
 	 * @return ComplexTagMatcher
94 94
 	 */
95
-	function tagMatchingOutline( $htmlOutline ) {
96
-		return ComplexTagMatcher::tagMatchingOutline( $htmlOutline );
95
+	function tagMatchingOutline($htmlOutline) {
96
+		return ComplexTagMatcher::tagMatchingOutline($htmlOutline);
97 97
 	}
98 98
 }
Please login to merge, or discard this patch.