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
Pull Request — master (#9)
by no
09:19
created
src/TagMatcher.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@
 block discarded – undo
6 6
 
7 7
 abstract class TagMatcher extends TypeSafeDiagnosingMatcher {
8 8
 
9
-	public function __construct() {
10
-		parent::__construct( self::TYPE_OBJECT, \DOMElement::class );
11
-	}
9
+    public function __construct() {
10
+        parent::__construct( self::TYPE_OBJECT, \DOMElement::class );
11
+    }
12 12
 
13 13
 }
Please login to merge, or discard this patch.
src/RootElementMatcher.php 1 patch
Indentation   +50 added lines, -50 removed lines patch added patch discarded remove patch
@@ -8,62 +8,62 @@
 block discarded – undo
8 8
 
9 9
 class RootElementMatcher extends TypeSafeDiagnosingMatcher {
10 10
 
11
-	/**
12
-	 * @var Matcher
13
-	 */
14
-	private $tagMatcher;
11
+    /**
12
+     * @var Matcher
13
+     */
14
+    private $tagMatcher;
15 15
 
16
-	/**
17
-	 * @param Matcher|null $tagMatcher
18
-	 *
19
-	 * @return static
20
-	 */
21
-	public static function havingRootElement( Matcher $tagMatcher = null ) {
22
-		return new static( $tagMatcher );
23
-	}
16
+    /**
17
+     * @param Matcher|null $tagMatcher
18
+     *
19
+     * @return static
20
+     */
21
+    public static function havingRootElement( Matcher $tagMatcher = null ) {
22
+        return new static( $tagMatcher );
23
+    }
24 24
 
25
-	public function __construct( Matcher $tagMatcher = null ) {
26
-		parent::__construct( self::TYPE_OBJECT, \DOMDocument::class );
27
-		$this->tagMatcher = $tagMatcher;
28
-	}
25
+    public function __construct( Matcher $tagMatcher = null ) {
26
+        parent::__construct( self::TYPE_OBJECT, \DOMDocument::class );
27
+        $this->tagMatcher = $tagMatcher;
28
+    }
29 29
 
30
-	public function describeTo( Description $description ) {
31
-		$description->appendText( 'having root element ' );
32
-		if ( $this->tagMatcher ) {
33
-			$description->appendDescriptionOf( $this->tagMatcher );
34
-		}
35
-	}
30
+    public function describeTo( Description $description ) {
31
+        $description->appendText( 'having root element ' );
32
+        if ( $this->tagMatcher ) {
33
+            $description->appendDescriptionOf( $this->tagMatcher );
34
+        }
35
+    }
36 36
 
37
-	/**
38
-	 * @param \DOMDocument $item
39
-	 * @param Description $mismatchDescription
40
-	 *
41
-	 * @return bool
42
-	 */
43
-	protected function matchesSafelyWithDiagnosticDescription( $item, Description $mismatchDescription ) {
44
-		$DOMNodeList = iterator_to_array( $item->documentElement->childNodes );
37
+    /**
38
+     * @param \DOMDocument $item
39
+     * @param Description $mismatchDescription
40
+     *
41
+     * @return bool
42
+     */
43
+    protected function matchesSafelyWithDiagnosticDescription( $item, Description $mismatchDescription ) {
44
+        $DOMNodeList = iterator_to_array( $item->documentElement->childNodes );
45 45
 
46
-		$body = array_shift( $DOMNodeList );
47
-		$DOMNodeList = iterator_to_array( $body->childNodes );
48
-		if ( count( $DOMNodeList ) > 1 ) {
49
-			// TODO Test this description
50
-			$mismatchDescription->appendText( 'having ' . count( $DOMNodeList ) . ' root elements ' );
51
-			return false;
52
-		}
46
+        $body = array_shift( $DOMNodeList );
47
+        $DOMNodeList = iterator_to_array( $body->childNodes );
48
+        if ( count( $DOMNodeList ) > 1 ) {
49
+            // TODO Test this description
50
+            $mismatchDescription->appendText( 'having ' . count( $DOMNodeList ) . ' root elements ' );
51
+            return false;
52
+        }
53 53
 
54
-		$target = array_shift( $DOMNodeList );
55
-		if ( !$target ) {
56
-			// TODO Reproduce?
57
-			$mismatchDescription->appendText( 'having no root elements ' );
58
-			return false;
59
-		}
60
-		if ( $this->tagMatcher ) {
61
-			$mismatchDescription->appendText( 'root element ' );
62
-			$this->tagMatcher->describeMismatch( $target, $mismatchDescription );
63
-			return $this->tagMatcher->matches( $target );
64
-		}
54
+        $target = array_shift( $DOMNodeList );
55
+        if ( !$target ) {
56
+            // TODO Reproduce?
57
+            $mismatchDescription->appendText( 'having no root elements ' );
58
+            return false;
59
+        }
60
+        if ( $this->tagMatcher ) {
61
+            $mismatchDescription->appendText( 'root element ' );
62
+            $this->tagMatcher->describeMismatch( $target, $mismatchDescription );
63
+            return $this->tagMatcher->matches( $target );
64
+        }
65 65
 
66
-		return (bool)$target;
67
-	}
66
+        return (bool)$target;
67
+    }
68 68
 
69 69
 }
Please login to merge, or discard this patch.
src/DirectChildElementMatcher.php 1 patch
Indentation   +60 added lines, -60 removed lines patch added patch discarded remove patch
@@ -8,65 +8,65 @@
 block discarded – undo
8 8
 
9 9
 class DirectChildElementMatcher extends TypeSafeDiagnosingMatcher {
10 10
 
11
-	/**
12
-	 * @var Matcher
13
-	 */
14
-	private $matcher;
15
-
16
-	public static function havingDirectChild( Matcher $elementMatcher = null ) {
17
-		return new static( $elementMatcher );
18
-	}
19
-
20
-	public function __construct( Matcher $matcher = null ) {
21
-		parent::__construct( \DOMNode::class );
22
-		$this->matcher = $matcher;
23
-	}
24
-
25
-	public function describeTo( Description $description ) {
26
-		$description->appendText( 'having direct child ' );
27
-		if ( $this->matcher ) {
28
-			$description->appendDescriptionOf( $this->matcher );
29
-		}
30
-	}
31
-
32
-	/**
33
-	 * @param \DOMDocument|\DOMNode $item
34
-	 * @param Description $mismatchDescription
35
-	 *
36
-	 * @return bool
37
-	 */
38
-	protected function matchesSafelyWithDiagnosticDescription( $item, Description $mismatchDescription ) {
39
-		if ( $item instanceof \DOMDocument ) {
40
-			$directChildren = iterator_to_array( $item->documentElement->childNodes );
41
-
42
-			$body = array_shift( $directChildren );
43
-			$directChildren = $body->childNodes;
44
-		} else {
45
-			$directChildren = $item->childNodes;
46
-		}
47
-
48
-		if ( $directChildren->length === 0 ) {
49
-			$mismatchDescription->appendText( 'with no direct children' );
50
-			return false;
51
-		}
52
-
53
-		$childWord = $directChildren->length === 1 ? 'child' : 'children';
54
-
55
-		$mismatchDescription->appendText( "with direct {$childWord} " );
56
-
57
-		if ( !$this->matcher ) {
58
-			return count( $directChildren ) !== 0;
59
-		}
60
-
61
-		foreach ( $directChildren as $child ) {
62
-			if ( $this->matcher && $this->matcher->matches( $child ) ) {
63
-				return true;
64
-			}
65
-		}
66
-
67
-		$this->matcher->describeMismatch( $child, $mismatchDescription );
68
-
69
-		return false;
70
-	}
11
+    /**
12
+     * @var Matcher
13
+     */
14
+    private $matcher;
15
+
16
+    public static function havingDirectChild( Matcher $elementMatcher = null ) {
17
+        return new static( $elementMatcher );
18
+    }
19
+
20
+    public function __construct( Matcher $matcher = null ) {
21
+        parent::__construct( \DOMNode::class );
22
+        $this->matcher = $matcher;
23
+    }
24
+
25
+    public function describeTo( Description $description ) {
26
+        $description->appendText( 'having direct child ' );
27
+        if ( $this->matcher ) {
28
+            $description->appendDescriptionOf( $this->matcher );
29
+        }
30
+    }
31
+
32
+    /**
33
+     * @param \DOMDocument|\DOMNode $item
34
+     * @param Description $mismatchDescription
35
+     *
36
+     * @return bool
37
+     */
38
+    protected function matchesSafelyWithDiagnosticDescription( $item, Description $mismatchDescription ) {
39
+        if ( $item instanceof \DOMDocument ) {
40
+            $directChildren = iterator_to_array( $item->documentElement->childNodes );
41
+
42
+            $body = array_shift( $directChildren );
43
+            $directChildren = $body->childNodes;
44
+        } else {
45
+            $directChildren = $item->childNodes;
46
+        }
47
+
48
+        if ( $directChildren->length === 0 ) {
49
+            $mismatchDescription->appendText( 'with no direct children' );
50
+            return false;
51
+        }
52
+
53
+        $childWord = $directChildren->length === 1 ? 'child' : 'children';
54
+
55
+        $mismatchDescription->appendText( "with direct {$childWord} " );
56
+
57
+        if ( !$this->matcher ) {
58
+            return count( $directChildren ) !== 0;
59
+        }
60
+
61
+        foreach ( $directChildren as $child ) {
62
+            if ( $this->matcher && $this->matcher->matches( $child ) ) {
63
+                return true;
64
+            }
65
+        }
66
+
67
+        $this->matcher->describeMismatch( $child, $mismatchDescription );
68
+
69
+        return false;
70
+    }
71 71
 
72 72
 }
Please login to merge, or discard this patch.
src/XmlNodeRecursiveIterator.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -4,27 +4,27 @@
 block discarded – undo
4 4
 
5 5
 class XmlNodeRecursiveIterator extends \ArrayIterator {
6 6
 
7
-	public function __construct( \DOMNodeList $nodeList ) {
8
-		$queue = $this->addElementsToQueue( [], $nodeList );
9
-		parent::__construct( $queue );
10
-	}
7
+    public function __construct( \DOMNodeList $nodeList ) {
8
+        $queue = $this->addElementsToQueue( [], $nodeList );
9
+        parent::__construct( $queue );
10
+    }
11 11
 
12
-	/**
13
-	 * @param \DOMNode[] $queue
14
-	 * @param \DOMNodeList $nodeList
15
-	 *
16
-	 * @return \DOMNode[] New queue
17
-	 */
18
-	private function addElementsToQueue( array $queue, \DOMNodeList $nodeList ) {
19
-		/** @var \DOMNode $node */
20
-		foreach ( $nodeList as $node ) {
21
-			$queue[] = $node;
22
-			if ( $node->childNodes !== null ) {
23
-				$queue = $this->addElementsToQueue( $queue, $node->childNodes );
24
-			}
25
-		}
12
+    /**
13
+     * @param \DOMNode[] $queue
14
+     * @param \DOMNodeList $nodeList
15
+     *
16
+     * @return \DOMNode[] New queue
17
+     */
18
+    private function addElementsToQueue( array $queue, \DOMNodeList $nodeList ) {
19
+        /** @var \DOMNode $node */
20
+        foreach ( $nodeList as $node ) {
21
+            $queue[] = $node;
22
+            if ( $node->childNodes !== null ) {
23
+                $queue = $this->addElementsToQueue( $queue, $node->childNodes );
24
+            }
25
+        }
26 26
 
27
-		return $queue;
28
-	}
27
+        return $queue;
28
+    }
29 29
 
30 30
 }
Please login to merge, or discard this patch.
src/HtmlMatcher.php 1 patch
Indentation   +94 added lines, -94 removed lines patch added patch discarded remove patch
@@ -8,99 +8,99 @@
 block discarded – undo
8 8
 
9 9
 class HtmlMatcher extends DiagnosingMatcher {
10 10
 
11
-	/**
12
-	 * @link http://www.xmlsoft.org/html/libxml-xmlerror.html#xmlParserErrors
13
-	 * @link https://github.com/Chronic-Dev/libxml2/blob/683f296a905710ff285c28b8644ef3a3d8be9486/include/libxml/xmlerror.h#L257
14
-	 */
15
-	const XML_UNKNOWN_TAG_ERROR_CODE = 801;
16
-
17
-	/**
18
-	 * @var Matcher
19
-	 */
20
-	private $elementMatcher;
21
-
22
-	/**
23
-	 * @param Matcher $elementMatcher
24
-	 *
25
-	 * @return self
26
-	 */
27
-	public static function htmlPiece( Matcher $elementMatcher = null ) {
28
-		return new static( $elementMatcher );
29
-	}
30
-
31
-	private function __construct( Matcher $elementMatcher = null ) {
32
-		$this->elementMatcher = $elementMatcher;
33
-	}
34
-
35
-	public function describeTo( Description $description ) {
36
-		$description->appendText( 'valid html piece ' );
37
-		if ( $this->elementMatcher ) {
38
-			$description->appendDescriptionOf( $this->elementMatcher );
39
-		}
40
-	}
41
-
42
-	protected function matchesWithDiagnosticDescription( $html, Description $mismatchDescription ) {
43
-		$internalErrors = libxml_use_internal_errors( true );
44
-		$document = new \DOMDocument();
45
-
46
-		$html = $this->escapeScriptTagContents( $html );
47
-
48
-		if ( !@$document->loadHTML( mb_convert_encoding( $html, 'HTML-ENTITIES', 'UTF-8' ) ) ) {
49
-			$mismatchDescription->appendText( 'there was some parsing error' );
50
-			return false;
51
-		}
52
-
53
-		$errors = libxml_get_errors();
54
-		libxml_clear_errors();
55
-		libxml_use_internal_errors( $internalErrors );
56
-
57
-		$result = true;
58
-		/** @var \LibXMLError $error */
59
-		foreach ( $errors as $error ) {
60
-			if ( $this->isUnknownTagError( $error ) ) {
61
-				continue;
62
-			}
63
-
64
-			$mismatchDescription->appendText( 'there was parsing error: ' )
65
-				->appendText( trim( $error->message ) )
66
-				->appendText( ' on line ' )
67
-				->appendText( $error->line );
68
-			$result = false;
69
-		}
70
-
71
-		if ( $result === false ) {
72
-			return $result;
73
-		}
74
-		$mismatchDescription->appendText( 'valid html piece ' );
75
-
76
-		if ( $this->elementMatcher ) {
77
-			$result = $this->elementMatcher->matches( $document );
78
-			$this->elementMatcher->describeMismatch( $document, $mismatchDescription );
79
-		}
80
-
81
-		$mismatchDescription->appendText( "\nActual html:\n" )->appendText( $html );
82
-
83
-		return $result;
84
-	}
85
-
86
-	/**
87
-	 * @param \LibXMLError $error
88
-	 *
89
-	 * @return bool
90
-	 */
91
-	private function isUnknownTagError( \LibXMLError $error ) {
92
-		return $error->code === self::XML_UNKNOWN_TAG_ERROR_CODE;
93
-	}
94
-
95
-	/**
96
-	 * @param string $html
97
-	 *
98
-	 * @return string HTML
99
-	 */
100
-	private function escapeScriptTagContents( $html ) {
101
-		return preg_replace_callback( '#(<script.*>)(.*)(</script>)#isU', function ( $matches ) {
102
-			return $matches[1] . str_replace( '</', '<\/', $matches[2] ) . $matches[3];
103
-		}, $html );
104
-	}
11
+    /**
12
+     * @link http://www.xmlsoft.org/html/libxml-xmlerror.html#xmlParserErrors
13
+     * @link https://github.com/Chronic-Dev/libxml2/blob/683f296a905710ff285c28b8644ef3a3d8be9486/include/libxml/xmlerror.h#L257
14
+     */
15
+    const XML_UNKNOWN_TAG_ERROR_CODE = 801;
16
+
17
+    /**
18
+     * @var Matcher
19
+     */
20
+    private $elementMatcher;
21
+
22
+    /**
23
+     * @param Matcher $elementMatcher
24
+     *
25
+     * @return self
26
+     */
27
+    public static function htmlPiece( Matcher $elementMatcher = null ) {
28
+        return new static( $elementMatcher );
29
+    }
30
+
31
+    private function __construct( Matcher $elementMatcher = null ) {
32
+        $this->elementMatcher = $elementMatcher;
33
+    }
34
+
35
+    public function describeTo( Description $description ) {
36
+        $description->appendText( 'valid html piece ' );
37
+        if ( $this->elementMatcher ) {
38
+            $description->appendDescriptionOf( $this->elementMatcher );
39
+        }
40
+    }
41
+
42
+    protected function matchesWithDiagnosticDescription( $html, Description $mismatchDescription ) {
43
+        $internalErrors = libxml_use_internal_errors( true );
44
+        $document = new \DOMDocument();
45
+
46
+        $html = $this->escapeScriptTagContents( $html );
47
+
48
+        if ( !@$document->loadHTML( mb_convert_encoding( $html, 'HTML-ENTITIES', 'UTF-8' ) ) ) {
49
+            $mismatchDescription->appendText( 'there was some parsing error' );
50
+            return false;
51
+        }
52
+
53
+        $errors = libxml_get_errors();
54
+        libxml_clear_errors();
55
+        libxml_use_internal_errors( $internalErrors );
56
+
57
+        $result = true;
58
+        /** @var \LibXMLError $error */
59
+        foreach ( $errors as $error ) {
60
+            if ( $this->isUnknownTagError( $error ) ) {
61
+                continue;
62
+            }
63
+
64
+            $mismatchDescription->appendText( 'there was parsing error: ' )
65
+                ->appendText( trim( $error->message ) )
66
+                ->appendText( ' on line ' )
67
+                ->appendText( $error->line );
68
+            $result = false;
69
+        }
70
+
71
+        if ( $result === false ) {
72
+            return $result;
73
+        }
74
+        $mismatchDescription->appendText( 'valid html piece ' );
75
+
76
+        if ( $this->elementMatcher ) {
77
+            $result = $this->elementMatcher->matches( $document );
78
+            $this->elementMatcher->describeMismatch( $document, $mismatchDescription );
79
+        }
80
+
81
+        $mismatchDescription->appendText( "\nActual html:\n" )->appendText( $html );
82
+
83
+        return $result;
84
+    }
85
+
86
+    /**
87
+     * @param \LibXMLError $error
88
+     *
89
+     * @return bool
90
+     */
91
+    private function isUnknownTagError( \LibXMLError $error ) {
92
+        return $error->code === self::XML_UNKNOWN_TAG_ERROR_CODE;
93
+    }
94
+
95
+    /**
96
+     * @param string $html
97
+     *
98
+     * @return string HTML
99
+     */
100
+    private function escapeScriptTagContents( $html ) {
101
+        return preg_replace_callback( '#(<script.*>)(.*)(</script>)#isU', function ( $matches ) {
102
+            return $matches[1] . str_replace( '</', '<\/', $matches[2] ) . $matches[3];
103
+        }, $html );
104
+    }
105 105
 
106 106
 }
Please login to merge, or discard this patch.
src/functions.php 1 patch
Indentation   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -3,87 +3,87 @@
 block discarded – undo
3 3
 use Hamcrest\Matcher;
4 4
 
5 5
 if ( !function_exists( 'htmlPiece' ) ) {
6
-	/**
7
-	 * @param Matcher|null $elementMatcher
8
-	 *
9
-	 * @return \WMDE\HamcrestHtml\HtmlMatcher
10
-	 */
11
-	function htmlPiece( Matcher $elementMatcher = null ) {
12
-		return \WMDE\HamcrestHtml\HtmlMatcher::htmlPiece( $elementMatcher );
13
-	}
6
+    /**
7
+     * @param Matcher|null $elementMatcher
8
+     *
9
+     * @return \WMDE\HamcrestHtml\HtmlMatcher
10
+     */
11
+    function htmlPiece( Matcher $elementMatcher = null ) {
12
+        return \WMDE\HamcrestHtml\HtmlMatcher::htmlPiece( $elementMatcher );
13
+    }
14 14
 }
15 15
 
16 16
 if ( !function_exists( 'havingRootElement' ) ) {
17
-	function havingRootElement( Matcher $matcher = null ) {
18
-		return \WMDE\HamcrestHtml\RootElementMatcher::havingRootElement( $matcher );
19
-	}
17
+    function havingRootElement( Matcher $matcher = null ) {
18
+        return \WMDE\HamcrestHtml\RootElementMatcher::havingRootElement( $matcher );
19
+    }
20 20
 }
21 21
 
22 22
 if ( !function_exists( 'havingDirectChild' ) ) {
23
-	function havingDirectChild( Matcher $elementMatcher = null ) {
24
-		return \WMDE\HamcrestHtml\DirectChildElementMatcher::havingDirectChild( $elementMatcher );
25
-	}
23
+    function havingDirectChild( Matcher $elementMatcher = null ) {
24
+        return \WMDE\HamcrestHtml\DirectChildElementMatcher::havingDirectChild( $elementMatcher );
25
+    }
26 26
 }
27 27
 
28 28
 if ( !function_exists( 'havingChild' ) ) {
29
-	function havingChild( Matcher $elementMatcher = null ) {
30
-		return \WMDE\HamcrestHtml\ChildElementMatcher::havingChild( $elementMatcher );
31
-	}
29
+    function havingChild( Matcher $elementMatcher = null ) {
30
+        return \WMDE\HamcrestHtml\ChildElementMatcher::havingChild( $elementMatcher );
31
+    }
32 32
 }
33 33
 
34 34
 if ( !function_exists( 'withTagName' ) ) {
35
-	/**
36
-	 * @param Matcher|string $tagName
37
-	 *
38
-	 * @return \WMDE\HamcrestHtml\TagNameMatcher
39
-	 */
40
-	function withTagName( $tagName ) {
41
-		return \WMDE\HamcrestHtml\TagNameMatcher::withTagName( $tagName );
42
-	}
35
+    /**
36
+     * @param Matcher|string $tagName
37
+     *
38
+     * @return \WMDE\HamcrestHtml\TagNameMatcher
39
+     */
40
+    function withTagName( $tagName ) {
41
+        return \WMDE\HamcrestHtml\TagNameMatcher::withTagName( $tagName );
42
+    }
43 43
 }
44 44
 
45 45
 if ( !function_exists( 'withAttribute' ) ) {
46
-	/**
47
-	 * @param Matcher|string $attributeName
48
-	 *
49
-	 * @return \WMDE\HamcrestHtml\AttributeMatcher
50
-	 */
51
-	function withAttribute( $attributeName ) {
52
-		return \WMDE\HamcrestHtml\AttributeMatcher::withAttribute( $attributeName );
53
-	}
46
+    /**
47
+     * @param Matcher|string $attributeName
48
+     *
49
+     * @return \WMDE\HamcrestHtml\AttributeMatcher
50
+     */
51
+    function withAttribute( $attributeName ) {
52
+        return \WMDE\HamcrestHtml\AttributeMatcher::withAttribute( $attributeName );
53
+    }
54 54
 }
55 55
 
56 56
 if ( !function_exists( 'withClass' ) ) {
57
-	/**
58
-	 * @param Matcher|string $class
59
-	 *
60
-	 * @return \WMDE\HamcrestHtml\ClassMatcher
61
-	 */
62
-	function withClass( $class ) {
63
-		// TODO don't allow to call with empty string
57
+    /**
58
+     * @param Matcher|string $class
59
+     *
60
+     * @return \WMDE\HamcrestHtml\ClassMatcher
61
+     */
62
+    function withClass( $class ) {
63
+        // TODO don't allow to call with empty string
64 64
 
65
-		return \WMDE\HamcrestHtml\ClassMatcher::withClass( $class );
66
-	}
65
+        return \WMDE\HamcrestHtml\ClassMatcher::withClass( $class );
66
+    }
67 67
 }
68 68
 
69 69
 if ( !function_exists( 'havingTextContents' ) ) {
70
-	/**
71
-	 * @param Matcher|string $text
72
-	 *
73
-	 * @return \WMDE\HamcrestHtml\TextContentsMatcher
74
-	 */
75
-	function havingTextContents( $text ) {
76
-		return \WMDE\HamcrestHtml\TextContentsMatcher::havingTextContents( $text );
77
-	}
70
+    /**
71
+     * @param Matcher|string $text
72
+     *
73
+     * @return \WMDE\HamcrestHtml\TextContentsMatcher
74
+     */
75
+    function havingTextContents( $text ) {
76
+        return \WMDE\HamcrestHtml\TextContentsMatcher::havingTextContents( $text );
77
+    }
78 78
 }
79 79
 
80 80
 if ( !function_exists( 'tagMatchingOutline' ) ) {
81
-	/**
82
-	 * @param string $htmlOutline
83
-	 *
84
-	 * @return \WMDE\HamcrestHtml\ComplexTagMatcher
85
-	 */
86
-	function tagMatchingOutline( $htmlOutline ) {
87
-		return \WMDE\HamcrestHtml\ComplexTagMatcher::tagMatchingOutline( $htmlOutline );
88
-	}
81
+    /**
82
+     * @param string $htmlOutline
83
+     *
84
+     * @return \WMDE\HamcrestHtml\ComplexTagMatcher
85
+     */
86
+    function tagMatchingOutline( $htmlOutline ) {
87
+        return \WMDE\HamcrestHtml\ComplexTagMatcher::tagMatchingOutline( $htmlOutline );
88
+    }
89 89
 }
Please login to merge, or discard this patch.
src/ClassMatcher.php 1 patch
Indentation   +52 added lines, -52 removed lines patch added patch discarded remove patch
@@ -7,57 +7,57 @@
 block discarded – undo
7 7
 
8 8
 class ClassMatcher extends TagMatcher {
9 9
 
10
-	/**
11
-	 * @var Matcher|string
12
-	 */
13
-	private $classMatcher;
14
-
15
-	/**
16
-	 * @param Matcher|string $class
17
-	 *
18
-	 * @return self
19
-	 */
20
-	public static function withClass( $class ) {
21
-		return new static( $class );
22
-	}
23
-
24
-	/**
25
-	 * @param Matcher|string $class
26
-	 */
27
-	public function __construct( $class ) {
28
-		parent::__construct();
29
-		$this->classMatcher = $class;
30
-	}
31
-
32
-	public function describeTo( Description $description ) {
33
-		$description->appendText( 'with class ' );
34
-		if ( $this->classMatcher instanceof Matcher ) {
35
-			$description->appendDescriptionOf( $this->classMatcher );
36
-		} else {
37
-			$description->appendValue( $this->classMatcher );
38
-		}
39
-	}
40
-
41
-	/**
42
-	 * @param \DOMElement $item
43
-	 * @param Description $mismatchDescription
44
-	 *
45
-	 * @return bool
46
-	 */
47
-	protected function matchesSafelyWithDiagnosticDescription( $item, Description $mismatchDescription ) {
48
-		$classAttribute = $item->getAttribute( 'class' );
49
-
50
-		if ( $this->classMatcher instanceof Matcher ) {
51
-			$classes = preg_split( '/\s+/u', $classAttribute );
52
-			foreach ( $classes as $class ) {
53
-				if ( $this->classMatcher->matches( $class ) ) {
54
-					return true;
55
-				}
56
-			}
57
-			return false;
58
-		} else {
59
-			return (bool)preg_match( '/(^|\s)' . preg_quote( $this->classMatcher, '/' ) . '(\s|$)/u', $classAttribute );
60
-		}
61
-	}
10
+    /**
11
+     * @var Matcher|string
12
+     */
13
+    private $classMatcher;
14
+
15
+    /**
16
+     * @param Matcher|string $class
17
+     *
18
+     * @return self
19
+     */
20
+    public static function withClass( $class ) {
21
+        return new static( $class );
22
+    }
23
+
24
+    /**
25
+     * @param Matcher|string $class
26
+     */
27
+    public function __construct( $class ) {
28
+        parent::__construct();
29
+        $this->classMatcher = $class;
30
+    }
31
+
32
+    public function describeTo( Description $description ) {
33
+        $description->appendText( 'with class ' );
34
+        if ( $this->classMatcher instanceof Matcher ) {
35
+            $description->appendDescriptionOf( $this->classMatcher );
36
+        } else {
37
+            $description->appendValue( $this->classMatcher );
38
+        }
39
+    }
40
+
41
+    /**
42
+     * @param \DOMElement $item
43
+     * @param Description $mismatchDescription
44
+     *
45
+     * @return bool
46
+     */
47
+    protected function matchesSafelyWithDiagnosticDescription( $item, Description $mismatchDescription ) {
48
+        $classAttribute = $item->getAttribute( 'class' );
49
+
50
+        if ( $this->classMatcher instanceof Matcher ) {
51
+            $classes = preg_split( '/\s+/u', $classAttribute );
52
+            foreach ( $classes as $class ) {
53
+                if ( $this->classMatcher->matches( $class ) ) {
54
+                    return true;
55
+                }
56
+            }
57
+            return false;
58
+        } else {
59
+            return (bool)preg_match( '/(^|\s)' . preg_quote( $this->classMatcher, '/' ) . '(\s|$)/u', $classAttribute );
60
+        }
61
+    }
62 62
 
63 63
 }
Please login to merge, or discard this patch.
src/AttributeMatcher.php 1 patch
Indentation   +100 added lines, -100 removed lines patch added patch discarded remove patch
@@ -7,114 +7,114 @@
 block discarded – undo
7 7
 
8 8
 class AttributeMatcher extends TagMatcher {
9 9
 
10
-	/**
11
-	 * @var Matcher|string
12
-	 */
13
-	private $attributeNameMatcher;
10
+    /**
11
+     * @var Matcher|string
12
+     */
13
+    private $attributeNameMatcher;
14 14
 
15
-	/**
16
-	 * @var Matcher|string|null
17
-	 */
18
-	private $valueMatcher;
15
+    /**
16
+     * @var Matcher|string|null
17
+     */
18
+    private $valueMatcher;
19 19
 
20
-	/**
21
-	 * @param Matcher|string $attributeName
22
-	 *
23
-	 * @return self
24
-	 */
25
-	public static function withAttribute( $attributeName ) {
26
-		return new static( $attributeName );
27
-	}
20
+    /**
21
+     * @param Matcher|string $attributeName
22
+     *
23
+     * @return self
24
+     */
25
+    public static function withAttribute( $attributeName ) {
26
+        return new static( $attributeName );
27
+    }
28 28
 
29
-	/**
30
-	 * @param Matcher|string $attributeNameMatcher
31
-	 */
32
-	public function __construct( $attributeNameMatcher ) {
33
-		parent::__construct();
29
+    /**
30
+     * @param Matcher|string $attributeNameMatcher
31
+     */
32
+    public function __construct( $attributeNameMatcher ) {
33
+        parent::__construct();
34 34
 
35
-		$this->attributeNameMatcher = $attributeNameMatcher;
36
-	}
35
+        $this->attributeNameMatcher = $attributeNameMatcher;
36
+    }
37 37
 
38
-	/**
39
-	 * @param Matcher|string $value
40
-	 *
41
-	 * @return AttributeMatcher
42
-	 */
43
-	public function havingValue( $value ) {
44
-		// TODO: Throw exception if value is set
45
-		$result = clone $this;
46
-		$result->valueMatcher = $value;
38
+    /**
39
+     * @param Matcher|string $value
40
+     *
41
+     * @return AttributeMatcher
42
+     */
43
+    public function havingValue( $value ) {
44
+        // TODO: Throw exception if value is set
45
+        $result = clone $this;
46
+        $result->valueMatcher = $value;
47 47
 
48
-		return $result;
49
-	}
48
+        return $result;
49
+    }
50 50
 
51
-	public function describeTo( Description $description ) {
52
-		$description->appendText( 'with attribute ' );
53
-		if ( $this->attributeNameMatcher instanceof Matcher ) {
54
-			$description->appendDescriptionOf( $this->attributeNameMatcher );
55
-		} else {
56
-			$description->appendValue( $this->attributeNameMatcher );
57
-		}
58
-		if ( $this->valueMatcher !== null ) {
59
-			$description->appendText( ' having value ' );
60
-			if ( $this->attributeNameMatcher instanceof Matcher ) {
61
-				$description->appendDescriptionOf( $this->valueMatcher );
62
-			} else {
63
-				$description->appendValue( $this->valueMatcher );
64
-			}
65
-		}
66
-	}
51
+    public function describeTo( Description $description ) {
52
+        $description->appendText( 'with attribute ' );
53
+        if ( $this->attributeNameMatcher instanceof Matcher ) {
54
+            $description->appendDescriptionOf( $this->attributeNameMatcher );
55
+        } else {
56
+            $description->appendValue( $this->attributeNameMatcher );
57
+        }
58
+        if ( $this->valueMatcher !== null ) {
59
+            $description->appendText( ' having value ' );
60
+            if ( $this->attributeNameMatcher instanceof Matcher ) {
61
+                $description->appendDescriptionOf( $this->valueMatcher );
62
+            } else {
63
+                $description->appendValue( $this->valueMatcher );
64
+            }
65
+        }
66
+    }
67 67
 
68
-	/**
69
-	 * @param \DOMElement $item
70
-	 * @param Description $mismatchDescription
71
-	 *
72
-	 * @return bool
73
-	 */
74
-	protected function matchesSafelyWithDiagnosticDescription( $item, Description $mismatchDescription ) {
75
-		if ( $this->valueMatcher === null ) {
76
-			if ( $this->attributeNameMatcher instanceof Matcher ) {
77
-				/** @var \DOMAttr $attribute */
78
-				foreach ( $item->attributes as $attribute ) {
79
-					if ( $this->attributeNameMatcher->matches( $attribute->name ) ) {
80
-						return true;
81
-					}
82
-				}
83
-			} else {
84
-				return $item->hasAttribute( $this->attributeNameMatcher );
85
-			}
86
-		} else {
87
-			if ( $this->attributeNameMatcher instanceof Matcher ) {
88
-				if ( $this->valueMatcher instanceof Matcher ) {
89
-					/** @var \DOMAttr $attribute */
90
-					foreach ( $item->attributes as $attribute ) {
91
-						if ( $this->attributeNameMatcher->matches( $attribute->name )
92
-							&& $this->valueMatcher->matches( $attribute->value )
93
-						) {
94
-							return true;
95
-						}
96
-					}
97
-				} else {
98
-					/** @var \DOMAttr $attribute */
99
-					foreach ( $item->attributes as $attribute ) {
100
-						if ( $this->attributeNameMatcher->matches( $attribute->name )
101
-							&& $attribute->value === $this->valueMatcher
102
-						) {
103
-							return true;
104
-						}
105
-					}
106
-				}
107
-			} else {
108
-				if ( $this->valueMatcher instanceof Matcher ) {
109
-					return $item->hasAttribute( $this->attributeNameMatcher )
110
-						&& $this->valueMatcher->matches( $item->getAttribute( $this->attributeNameMatcher ) );
111
-				} else {
112
-					return $item->getAttribute( $this->attributeNameMatcher ) === $this->valueMatcher;
113
-				}
114
-			}
115
-		}
68
+    /**
69
+     * @param \DOMElement $item
70
+     * @param Description $mismatchDescription
71
+     *
72
+     * @return bool
73
+     */
74
+    protected function matchesSafelyWithDiagnosticDescription( $item, Description $mismatchDescription ) {
75
+        if ( $this->valueMatcher === null ) {
76
+            if ( $this->attributeNameMatcher instanceof Matcher ) {
77
+                /** @var \DOMAttr $attribute */
78
+                foreach ( $item->attributes as $attribute ) {
79
+                    if ( $this->attributeNameMatcher->matches( $attribute->name ) ) {
80
+                        return true;
81
+                    }
82
+                }
83
+            } else {
84
+                return $item->hasAttribute( $this->attributeNameMatcher );
85
+            }
86
+        } else {
87
+            if ( $this->attributeNameMatcher instanceof Matcher ) {
88
+                if ( $this->valueMatcher instanceof Matcher ) {
89
+                    /** @var \DOMAttr $attribute */
90
+                    foreach ( $item->attributes as $attribute ) {
91
+                        if ( $this->attributeNameMatcher->matches( $attribute->name )
92
+                            && $this->valueMatcher->matches( $attribute->value )
93
+                        ) {
94
+                            return true;
95
+                        }
96
+                    }
97
+                } else {
98
+                    /** @var \DOMAttr $attribute */
99
+                    foreach ( $item->attributes as $attribute ) {
100
+                        if ( $this->attributeNameMatcher->matches( $attribute->name )
101
+                            && $attribute->value === $this->valueMatcher
102
+                        ) {
103
+                            return true;
104
+                        }
105
+                    }
106
+                }
107
+            } else {
108
+                if ( $this->valueMatcher instanceof Matcher ) {
109
+                    return $item->hasAttribute( $this->attributeNameMatcher )
110
+                        && $this->valueMatcher->matches( $item->getAttribute( $this->attributeNameMatcher ) );
111
+                } else {
112
+                    return $item->getAttribute( $this->attributeNameMatcher ) === $this->valueMatcher;
113
+                }
114
+            }
115
+        }
116 116
 
117
-		return false;
118
-	}
117
+        return false;
118
+    }
119 119
 
120 120
 }
Please login to merge, or discard this patch.
src/TagNameMatcher.php 1 patch
Indentation   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -7,61 +7,61 @@
 block discarded – undo
7 7
 
8 8
 class TagNameMatcher extends TagMatcher {
9 9
 
10
-	/**
11
-	 * @var Matcher|string
12
-	 */
13
-	private $tagNameMatcher;
10
+    /**
11
+     * @var Matcher|string
12
+     */
13
+    private $tagNameMatcher;
14 14
 
15
-	/**
16
-	 * @param Matcher|string $tagName
17
-	 *
18
-	 * @return self
19
-	 */
20
-	public static function withTagName( $tagName ) {
21
-		return new static( $tagName );
22
-	}
15
+    /**
16
+     * @param Matcher|string $tagName
17
+     *
18
+     * @return self
19
+     */
20
+    public static function withTagName( $tagName ) {
21
+        return new static( $tagName );
22
+    }
23 23
 
24
-	/**
25
-	 * @param Matcher|string $tagNameMatcher
26
-	 */
27
-	public function __construct( $tagNameMatcher ) {
28
-		parent::__construct();
29
-		$this->tagNameMatcher = $tagNameMatcher;
30
-	}
24
+    /**
25
+     * @param Matcher|string $tagNameMatcher
26
+     */
27
+    public function __construct( $tagNameMatcher ) {
28
+        parent::__construct();
29
+        $this->tagNameMatcher = $tagNameMatcher;
30
+    }
31 31
 
32
-	public function describeTo( Description $description ) {
33
-		$description->appendText( 'with tag name ' );
34
-		if ( $this->tagNameMatcher instanceof Matcher ) {
35
-			$description->appendDescriptionOf( $this->tagNameMatcher );
36
-		} else {
37
-			$description->appendValue( $this->tagNameMatcher );
38
-		}
39
-	}
32
+    public function describeTo( Description $description ) {
33
+        $description->appendText( 'with tag name ' );
34
+        if ( $this->tagNameMatcher instanceof Matcher ) {
35
+            $description->appendDescriptionOf( $this->tagNameMatcher );
36
+        } else {
37
+            $description->appendValue( $this->tagNameMatcher );
38
+        }
39
+    }
40 40
 
41
-	/**
42
-	 * @param \DOMElement $item
43
-	 * @param Description $mismatchDescription
44
-	 *
45
-	 * @return bool
46
-	 */
47
-	protected function matchesSafelyWithDiagnosticDescription( $item, Description $mismatchDescription ) {
48
-		if ( $this->tagNameMatcher instanceof Matcher ) {
49
-			if ( $this->tagNameMatcher->matches( $item->tagName ) ) {
50
-				return true;
51
-			}
52
-		} else {
53
-			if ( $item->tagName === $this->tagNameMatcher ) {
54
-				return true;
55
-			}
56
-		}
41
+    /**
42
+     * @param \DOMElement $item
43
+     * @param Description $mismatchDescription
44
+     *
45
+     * @return bool
46
+     */
47
+    protected function matchesSafelyWithDiagnosticDescription( $item, Description $mismatchDescription ) {
48
+        if ( $this->tagNameMatcher instanceof Matcher ) {
49
+            if ( $this->tagNameMatcher->matches( $item->tagName ) ) {
50
+                return true;
51
+            }
52
+        } else {
53
+            if ( $item->tagName === $this->tagNameMatcher ) {
54
+                return true;
55
+            }
56
+        }
57 57
 
58
-		$mismatchDescription->appendText( 'tag name ' );
59
-		if ( $this->tagNameMatcher instanceof Matcher ) {
60
-			$this->tagNameMatcher->describeMismatch( $item->tagName, $mismatchDescription );
61
-		} else {
62
-			$mismatchDescription->appendText( 'was ' )->appendValue( $item->tagName );
63
-		}
64
-		return false;
65
-	}
58
+        $mismatchDescription->appendText( 'tag name ' );
59
+        if ( $this->tagNameMatcher instanceof Matcher ) {
60
+            $this->tagNameMatcher->describeMismatch( $item->tagName, $mismatchDescription );
61
+        } else {
62
+            $mismatchDescription->appendText( 'was ' )->appendValue( $item->tagName );
63
+        }
64
+        return false;
65
+    }
66 66
 
67 67
 }
Please login to merge, or discard this patch.