@@ -13,8 +13,8 @@ discard block |
||
| 13 | 13 | * |
| 14 | 14 | * @return self |
| 15 | 15 | */ |
| 16 | - public static function containsStringIgnoringWhiteSpace( $substring ) { |
|
| 17 | - return new self( $substring ); |
|
| 16 | + public static function containsStringIgnoringWhiteSpace($substring) { |
|
| 17 | + return new self($substring); |
|
| 18 | 18 | } |
| 19 | 19 | |
| 20 | 20 | /** |
@@ -22,8 +22,8 @@ discard block |
||
| 22 | 22 | * |
| 23 | 23 | * @return bool |
| 24 | 24 | */ |
| 25 | - protected function evalSubstringOf( $item ) { |
|
| 26 | - return strpos( $this->stripSpace( $item ), $this->stripSpace( $this->_substring ) ) !== false; |
|
| 25 | + protected function evalSubstringOf($item) { |
|
| 26 | + return strpos($this->stripSpace($item), $this->stripSpace($this->_substring)) !== false; |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | protected function relationship() { |
@@ -35,8 +35,8 @@ discard block |
||
| 35 | 35 | * |
| 36 | 36 | * @return string |
| 37 | 37 | */ |
| 38 | - private function stripSpace( $string ) { |
|
| 39 | - return trim( preg_replace( '/\s+/', ' ', $string ) ); |
|
| 38 | + private function stripSpace($string) { |
|
| 39 | + return trim(preg_replace('/\s+/', ' ', $string)); |
|
| 40 | 40 | } |
| 41 | 41 | |
| 42 | 42 | } |
@@ -2,99 +2,99 @@ |
||
| 2 | 2 | |
| 3 | 3 | use Hamcrest\Matcher; |
| 4 | 4 | |
| 5 | -if ( !function_exists( 'htmlPiece' ) ) { |
|
| 5 | +if (!function_exists('htmlPiece')) { |
|
| 6 | 6 | /** |
| 7 | 7 | * @param Matcher|null $elementMatcher |
| 8 | 8 | * |
| 9 | 9 | * @return \WMDE\HamcrestHtml\HtmlMatcher |
| 10 | 10 | */ |
| 11 | - function htmlPiece( Matcher $elementMatcher = null ) { |
|
| 12 | - return \WMDE\HamcrestHtml\HtmlMatcher::htmlPiece( $elementMatcher ); |
|
| 11 | + function htmlPiece(Matcher $elementMatcher = null) { |
|
| 12 | + return \WMDE\HamcrestHtml\HtmlMatcher::htmlPiece($elementMatcher); |
|
| 13 | 13 | } |
| 14 | 14 | } |
| 15 | 15 | |
| 16 | -if ( !function_exists( 'havingRootElement' ) ) { |
|
| 17 | - function havingRootElement( Matcher $matcher = null ) { |
|
| 18 | - return \WMDE\HamcrestHtml\RootElementMatcher::havingRootElement( $matcher ); |
|
| 16 | +if (!function_exists('havingRootElement')) { |
|
| 17 | + function havingRootElement(Matcher $matcher = null) { |
|
| 18 | + return \WMDE\HamcrestHtml\RootElementMatcher::havingRootElement($matcher); |
|
| 19 | 19 | } |
| 20 | 20 | } |
| 21 | 21 | |
| 22 | -if ( !function_exists( 'havingDirectChild' ) ) { |
|
| 23 | - function havingDirectChild( Matcher $elementMatcher = null ) { |
|
| 24 | - return \WMDE\HamcrestHtml\DirectChildElementMatcher::havingDirectChild( $elementMatcher ); |
|
| 22 | +if (!function_exists('havingDirectChild')) { |
|
| 23 | + function havingDirectChild(Matcher $elementMatcher = null) { |
|
| 24 | + return \WMDE\HamcrestHtml\DirectChildElementMatcher::havingDirectChild($elementMatcher); |
|
| 25 | 25 | } |
| 26 | 26 | } |
| 27 | 27 | |
| 28 | -if ( !function_exists( 'havingChild' ) ) { |
|
| 29 | - function havingChild( Matcher $elementMatcher = null ) { |
|
| 30 | - return \WMDE\HamcrestHtml\ChildElementMatcher::havingChild( $elementMatcher ); |
|
| 28 | +if (!function_exists('havingChild')) { |
|
| 29 | + function havingChild(Matcher $elementMatcher = null) { |
|
| 30 | + return \WMDE\HamcrestHtml\ChildElementMatcher::havingChild($elementMatcher); |
|
| 31 | 31 | } |
| 32 | 32 | } |
| 33 | 33 | |
| 34 | -if ( !function_exists( 'withTagName' ) ) { |
|
| 34 | +if (!function_exists('withTagName')) { |
|
| 35 | 35 | /** |
| 36 | 36 | * @param Matcher|string $tagName |
| 37 | 37 | * |
| 38 | 38 | * @return \WMDE\HamcrestHtml\TagNameMatcher |
| 39 | 39 | */ |
| 40 | - function withTagName( $tagName ) { |
|
| 41 | - return \WMDE\HamcrestHtml\TagNameMatcher::withTagName( $tagName ); |
|
| 40 | + function withTagName($tagName) { |
|
| 41 | + return \WMDE\HamcrestHtml\TagNameMatcher::withTagName($tagName); |
|
| 42 | 42 | } |
| 43 | 43 | } |
| 44 | 44 | |
| 45 | -if ( !function_exists( 'withAttribute' ) ) { |
|
| 45 | +if (!function_exists('withAttribute')) { |
|
| 46 | 46 | /** |
| 47 | 47 | * @param Matcher|string $attributeName |
| 48 | 48 | * |
| 49 | 49 | * @return \WMDE\HamcrestHtml\AttributeMatcher |
| 50 | 50 | */ |
| 51 | - function withAttribute( $attributeName ) { |
|
| 52 | - return \WMDE\HamcrestHtml\AttributeMatcher::withAttribute( $attributeName ); |
|
| 51 | + function withAttribute($attributeName) { |
|
| 52 | + return \WMDE\HamcrestHtml\AttributeMatcher::withAttribute($attributeName); |
|
| 53 | 53 | } |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | -if ( !function_exists( 'withClass' ) ) { |
|
| 56 | +if (!function_exists('withClass')) { |
|
| 57 | 57 | /** |
| 58 | 58 | * @param Matcher|string $class |
| 59 | 59 | * |
| 60 | 60 | * @return \WMDE\HamcrestHtml\ClassMatcher |
| 61 | 61 | */ |
| 62 | - function withClass( $class ) { |
|
| 62 | + function withClass($class) { |
|
| 63 | 63 | // TODO don't allow to call with empty string |
| 64 | 64 | |
| 65 | - return \WMDE\HamcrestHtml\ClassMatcher::withClass( $class ); |
|
| 65 | + return \WMDE\HamcrestHtml\ClassMatcher::withClass($class); |
|
| 66 | 66 | } |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | -if ( !function_exists( 'havingTextContents' ) ) { |
|
| 69 | +if (!function_exists('havingTextContents')) { |
|
| 70 | 70 | /** |
| 71 | 71 | * @param Matcher|string $text |
| 72 | 72 | * |
| 73 | 73 | * @return \WMDE\HamcrestHtml\TextContentsMatcher |
| 74 | 74 | */ |
| 75 | - function havingTextContents( $text ) { |
|
| 76 | - return \WMDE\HamcrestHtml\TextContentsMatcher::havingTextContents( $text ); |
|
| 75 | + function havingTextContents($text) { |
|
| 76 | + return \WMDE\HamcrestHtml\TextContentsMatcher::havingTextContents($text); |
|
| 77 | 77 | } |
| 78 | 78 | } |
| 79 | 79 | |
| 80 | -if ( !function_exists( 'tagMatchingOutline' ) ) { |
|
| 80 | +if (!function_exists('tagMatchingOutline')) { |
|
| 81 | 81 | /** |
| 82 | 82 | * @param string $htmlOutline |
| 83 | 83 | * |
| 84 | 84 | * @return \WMDE\HamcrestHtml\ComplexTagMatcher |
| 85 | 85 | */ |
| 86 | - function tagMatchingOutline( $htmlOutline ) { |
|
| 87 | - return \WMDE\HamcrestHtml\ComplexTagMatcher::tagMatchingOutline( $htmlOutline ); |
|
| 86 | + function tagMatchingOutline($htmlOutline) { |
|
| 87 | + return \WMDE\HamcrestHtml\ComplexTagMatcher::tagMatchingOutline($htmlOutline); |
|
| 88 | 88 | } |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | -if ( !function_exists( 'containsStringIgnoringWhiteSpace' ) ) { |
|
| 91 | +if (!function_exists('containsStringIgnoringWhiteSpace')) { |
|
| 92 | 92 | /** |
| 93 | 93 | * @param string $substring |
| 94 | 94 | * |
| 95 | 95 | * @return \WMDE\HamcrestHtml\StringContainsIgnoringWhiteSpace |
| 96 | 96 | */ |
| 97 | - function containsStringIgnoringWhiteSpace( $substring ) { |
|
| 97 | + function containsStringIgnoringWhiteSpace($substring) { |
|
| 98 | 98 | return \WMDE\HamcrestHtml\StringContainsIgnoringWhiteSpace::containsStringIgnoringWhiteSpace( |
| 99 | 99 | $substring |
| 100 | 100 | ); |