>
+ */
+ public static function dataReturnValueIsFalse()
+ {
+ return [
+ 'when there is a fixer conflict' => [
+ 'standard' => __DIR__.'/FixFileReturnValueConflictTest.xml',
+ ],
+ 'when the fixer ran out of loops before all fixes could be applied' => [
+ 'standard' => __DIR__.'/FixFileReturnValueNotEnoughLoopsTest.xml',
+ ],
+ ];
+
+ }//end dataReturnValueIsFalse()
+
+
+}//end class
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/TestStandard/Sniffs/FixFileReturnValue/AllGoodSniff.php b/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/TestStandard/Sniffs/FixFileReturnValue/AllGoodSniff.php
new file mode 100644
index 00000000..20dbe2fe
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/TestStandard/Sniffs/FixFileReturnValue/AllGoodSniff.php
@@ -0,0 +1,37 @@
+getTokens();
+
+ if ($tokens[($stackPtr + 1)]['code'] !== T_WHITESPACE
+ || $tokens[($stackPtr + 1)]['length'] > 51
+ ) {
+ return;
+ }
+
+ $error = 'There should be 52 spaces after an ECHO keyword';
+ $fix = $phpcsFile->addFixableError($error, ($stackPtr + 1), 'ShortSpace');
+ if ($fix === true) {
+ $phpcsFile->fixer->replaceToken(($stackPtr + 1), str_repeat(' ', 52));
+ }
+ }
+}
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/TestStandard/Sniffs/FixFileReturnValue/ConflictSniff.php b/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/TestStandard/Sniffs/FixFileReturnValue/ConflictSniff.php
new file mode 100644
index 00000000..ca7afb91
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/TestStandard/Sniffs/FixFileReturnValue/ConflictSniff.php
@@ -0,0 +1,101 @@
+getTokens();
+
+ // Demand a blank line after the PHP open tag.
+ // This error is here to ensure something will be fixed in the file.
+ $nextNonWhitespace = $phpcsFile->findNext(T_WHITESPACE, ($stackPtr + 1), null, true);
+
+ if (($tokens[$nextNonWhitespace]['line'] - $tokens[$stackPtr]['line']) !== 2) {
+ $error = 'There must be a single blank line after the PHP open tag';
+ $fix = $phpcsFile->addFixableError($error, $stackPtr, 'BlankLineAfterOpen');
+ if ($fix === true) {
+ $phpcsFile->fixer->addNewline($stackPtr);
+
+ // This return is here deliberately to force a new loop.
+ // This should ensure that loop 50 does *NOT* apply any fixes.
+ return;
+ }
+ }
+
+ // Skip to the end of the file.
+ $stackPtr = ($phpcsFile->numTokens - 1);
+
+ $eolCharLen = strlen($phpcsFile->eolChar);
+ $lastChars = substr($tokens[$stackPtr]['content'], ($eolCharLen * -1));
+
+ // Demand a newline at the end of a file.
+ if ($lastChars !== $phpcsFile->eolChar) {
+ $error = 'File must end with a newline character';
+ $fix = $phpcsFile->addFixableError($error, $stackPtr, 'NoNewlineEOF');
+ if ($fix === true) {
+ $phpcsFile->fixer->addNewline($stackPtr);
+ }
+ }
+
+ // Demand NO newline at the end of a file.
+ if ($lastChars === $phpcsFile->eolChar) {
+ $error = 'File must not end with a newline character';
+ $fix = $phpcsFile->addFixableError($error, $stackPtr, 'NewlineEOF');
+ if ($fix === true) {
+ $phpcsFile->fixer->beginChangeset();
+
+ for ($i = $stackPtr; $i > 0; $i--) {
+ $newContent = rtrim($tokens[$i]['content'], $phpcsFile->eolChar);
+ $phpcsFile->fixer->replaceToken($i, $newContent);
+
+ if ($newContent !== '') {
+ break;
+ }
+ }
+
+ $phpcsFile->fixer->endChangeset();
+ }
+ }
+
+ // Ignore the rest of the file.
+ return $phpcsFile->numTokens;
+ }
+}
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/TestStandard/Sniffs/FixFileReturnValue/NotEnoughLoopsSniff.php b/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/TestStandard/Sniffs/FixFileReturnValue/NotEnoughLoopsSniff.php
new file mode 100644
index 00000000..e42d3fd7
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/TestStandard/Sniffs/FixFileReturnValue/NotEnoughLoopsSniff.php
@@ -0,0 +1,40 @@
+getTokens();
+
+ if ($tokens[($stackPtr + 1)]['code'] !== T_WHITESPACE
+ || $tokens[($stackPtr + 1)]['length'] > 60
+ ) {
+ return;
+ }
+
+ $error = 'There should be 60 spaces after an ECHO keyword';
+ $fix = $phpcsFile->addFixableError($error, ($stackPtr + 1), 'ShortSpace');
+ if ($fix === true) {
+ // The fixer deliberately only adds one space in each loop to ensure it runs out of loops before the file complies.
+ $phpcsFile->fixer->addContent($stackPtr, ' ');
+ }
+ }
+}
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/TestStandard/ruleset.xml b/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/TestStandard/ruleset.xml
new file mode 100644
index 00000000..6a202de3
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/TestStandard/ruleset.xml
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/test.inc b/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/test.inc
new file mode 100644
index 00000000..76195b04
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Fixer/Fixtures/test.inc
@@ -0,0 +1,2 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/AnchorLinksTest.xml b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/AnchorLinksTest.xml
new file mode 100644
index 00000000..17fb0cee
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/AnchorLinksTest.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlankLines.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlankLines.html
new file mode 100644
index 00000000..a51ad92a
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlankLines.html
@@ -0,0 +1,105 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Code Comparison, blank lines §
+ This is a standard block.
+
+
+ | Valid: Checking handling of blank lines. |
+ Invalid: Checking handling of blank lines. |
+
+
+ | // First line of the code sample is// deliberately empty.// We also have a blank line in the middle.// And a blank line at the end. |
+ // First line of the code sample is// deliberately empty.// We also have a blank line in the middle.// And a blank line at the end. |
+
+
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlankLines.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlankLines.md
new file mode 100644
index 00000000..ef25f893
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlankLines.md
@@ -0,0 +1,35 @@
+# GeneratorTest Coding Standard
+
+## Code Comparison, blank lines
+
+This is a standard block.
+
+
+ | Valid: Checking handling of blank lines. |
+ Invalid: Checking handling of blank lines. |
+
+
+|
+
+ // First line of the code sample is
+ // deliberately empty.
+
+ // We also have a blank line in the middle.
+
+ // And a blank line at the end.
+
+ |
+
+
+ // First line of the code sample is
+ // deliberately empty.
+
+ // We also have a blank line in the middle.
+
+ // And a blank line at the end.
+
+ |
+
+
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlankLines.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlankLines.txt
new file mode 100644
index 00000000..a7fd41d9
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlankLines.txt
@@ -0,0 +1,18 @@
+
+---------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: CODE COMPARISON, BLANK LINES |
+---------------------------------------------------------------
+
+This is a standard block.
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: Checking handling of blank lines. | Invalid: Checking handling of blank lines. |
+----------------------------------------------------------------------------------------------------
+| // First line of the code sample is | // First line of the code sample is |
+| // deliberately empty. | // deliberately empty. |
+| | |
+| // We also have a blank line in the middle. | // We also have a blank line in the middle. |
+| | |
+| // And a blank line at the end. | // And a blank line at the end. |
+----------------------------------------------------------------------------------------------------
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlockLength.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlockLength.html
new file mode 100644
index 00000000..881bac30
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlockLength.html
@@ -0,0 +1,115 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Code Comparison, block length §
+ This is a standard block.
+
+
+ | Valid: code sample A has more lines than B. |
+ Invalid: shorter. |
+
+
+ | // This code sample has more lines// than the "invalid" one.$one = 10; |
+ $a = 10; |
+
+
+
+
+ | Valid: shorter. |
+ Invalid: code sample B has more lines than A. |
+
+
+ | echo $foo; |
+ // This code sample has more lines// than the "valid" one.print $foo; |
+
+
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlockLength.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlockLength.md
new file mode 100644
index 00000000..526f110b
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlockLength.md
@@ -0,0 +1,47 @@
+# GeneratorTest Coding Standard
+
+## Code Comparison, block length
+
+This is a standard block.
+
+
+ | Valid: code sample A has more lines than B. |
+ Invalid: shorter. |
+
+
+|
+
+ // This code sample has more lines
+ // than the "invalid" one.
+ $one = 10;
+
+ |
+
+
+ $a = 10;
+
+ |
+
+
+
+
+ | Valid: shorter. |
+ Invalid: code sample B has more lines than A. |
+
+
+|
+
+ echo $foo;
+
+ |
+
+
+ // This code sample has more lines
+ // than the "valid" one.
+ print $foo;
+
+ |
+
+
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlockLength.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlockLength.txt
new file mode 100644
index 00000000..c2fb737f
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonBlockLength.txt
@@ -0,0 +1,23 @@
+
+----------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: CODE COMPARISON, BLOCK LENGTH |
+----------------------------------------------------------------
+
+This is a standard block.
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: code sample A has more lines than B. | Invalid: shorter. |
+----------------------------------------------------------------------------------------------------
+| // This code sample has more lines | $a = 10; |
+| // than the "invalid" one. | |
+| $one = 10; | |
+----------------------------------------------------------------------------------------------------
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: shorter. | Invalid: code sample B has more lines than A. |
+----------------------------------------------------------------------------------------------------
+| echo $foo; | // This code sample has more lines |
+| | // than the "valid" one. |
+| | print $foo; |
+----------------------------------------------------------------------------------------------------
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonEncoding.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonEncoding.html
new file mode 100644
index 00000000..a325def1
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonEncoding.html
@@ -0,0 +1,105 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Code Comparison, char encoding §
+ This is a standard block.
+
+
+ | Valid: Vestibulum et orci condimentum. |
+ Invalid: Donec in nisl ut tortor convallis interdum. |
+
+
+ | <?php// The above PHP tag is specifically testing// handling of that in generated HTML doc.// Now let's also check the handling of// comparison operators in code samples...$a = $b < $c;$d = $e > $f;$g = $h <= $i;$j = $k >= $l;$m = $n <=> $o; |
+ <?php// The above PHP tag is specifically testing// handling of that in generated HTML doc.// Now let's also check the handling of// comparison operators in code samples// in combination with "em" tags.$a = $b < $c;$d = $e > $f;$g = $h <= $i;$j = $k >= $l;$m = $n <=> $o; |
+
+
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonEncoding.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonEncoding.md
new file mode 100644
index 00000000..052d3cb3
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonEncoding.md
@@ -0,0 +1,48 @@
+# GeneratorTest Coding Standard
+
+## Code Comparison, char encoding
+
+This is a standard block.
+
+
+ | Valid: Vestibulum et orci condimentum. |
+ Invalid: Donec in nisl ut tortor convallis interdum. |
+
+
+|
+
+ $f;
+ $g = $h <= $i;
+ $j = $k >= $l;
+ $m = $n <=> $o;
+
+ |
+
+
+ $f;
+ $g = $h <= $i;
+ $j = $k >= $l;
+ $m = $n <=> $o;
+
+ |
+
+
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonEncoding.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonEncoding.txt
new file mode 100644
index 00000000..7ffcf4df
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonEncoding.txt
@@ -0,0 +1,26 @@
+
+-----------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: CODE COMPARISON, CHAR ENCODING |
+-----------------------------------------------------------------
+
+This is a standard block.
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: Vestibulum et orci condimentum. | Invalid: Donec in nisl ut tortor convallis |
+| | interdum. |
+----------------------------------------------------------------------------------------------------
+| $f; | $a = $b < $c; |
+| $g = $h <= $i; | $d = $e > $f; |
+| $j = $k >= $l; | $g = $h <= $i; |
+| $m = $n <=> $o; | $j = $k >= $l; |
+| | $m = $n <=> $o; |
+----------------------------------------------------------------------------------------------------
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonLineLength.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonLineLength.html
new file mode 100644
index 00000000..b1e83a42
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonLineLength.html
@@ -0,0 +1,106 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Code Comparison, line length §
+ Ensure there is no PHP "Warning: str_repeat(): Second argument has to be greater than or equal to 0".
+Ref: squizlabs/PHP_CodeSniffer#2522
+
+
+ | Valid: contains line which is too long. |
+ Invalid: contains line which is too long. |
+
+
+ | class Foo extends Bar implements Countable, Serializable{} |
+ class Foo extends Bar{ public static function foobar($param1, $param2) {}} |
+
+
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonLineLength.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonLineLength.md
new file mode 100644
index 00000000..8dbf5642
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonLineLength.md
@@ -0,0 +1,31 @@
+# GeneratorTest Coding Standard
+
+## Code Comparison, line length
+
+Ensure there is no PHP "Warning: str_repeat(): Second argument has to be greater than or equal to 0".
+Ref: squizlabs/PHP_CodeSniffer#2522
+
+
+ | Valid: contains line which is too long. |
+ Invalid: contains line which is too long. |
+
+
+|
+
+ class Foo extends Bar implements Countable, Serializable
+ {
+ }
+
+ |
+
+
+ class Foo extends Bar
+ {
+ public static function foobar($param1, $param2) {}
+ }
+
+ |
+
+
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonLineLength.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonLineLength.txt
new file mode 100644
index 00000000..e8a665cd
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeComparisonLineLength.txt
@@ -0,0 +1,18 @@
+
+---------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: CODE COMPARISON, LINE LENGTH |
+---------------------------------------------------------------
+
+Ensure there is no PHP "Warning: str_repeat(): Second argument has to be greater than or equal to
+0".
+Ref: squizlabs/PHP_CodeSniffer#2522
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: contains line which is too long. | Invalid: contains line which is too long. |
+----------------------------------------------------------------------------------------------------
+| class Foo extends Bar implements Countable, Serializable| class Foo extends Bar |
+| { | { |
+| } | public static function foobar($param1, $param2) {}|
+| | } |
+----------------------------------------------------------------------------------------------------
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleLineWrapping.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleLineWrapping.html
new file mode 100644
index 00000000..dbe9966d
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleLineWrapping.html
@@ -0,0 +1,135 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Code Title, line wrapping §
+ This is a standard block.
+
+
+ | Valid: exactly 45 character long description. |
+ Invalid: exactly 45 char long description---. |
+
+
+ | // Dummy. |
+ // Dummy. |
+
+
+
+
+ | Valid: exactly 46 character long description-. |
+ Invalid: exactly 46 character long description |
+
+
+ | // Dummy. |
+ // Dummy. |
+
+
+
+
+ | Valid: exactly 47 character long description--. |
+ Invalid: exactly 47 character long description. |
+
+
+ | // Dummy. |
+ // Dummy. |
+
+
+
+
+ | Valid: this description is longer than 46 characters and will wrap. |
+ Invalid: this description is longer than 46 characters and will wrap. |
+
+
+ | // Dummy. |
+ // Dummy. |
+
+
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleLineWrapping.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleLineWrapping.md
new file mode 100644
index 00000000..a0d6a8e6
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleLineWrapping.md
@@ -0,0 +1,79 @@
+# GeneratorTest Coding Standard
+
+## Code Title, line wrapping
+
+This is a standard block.
+
+
+ | Valid: exactly 45 character long description. |
+ Invalid: exactly 45 char long description---. |
+
+
+|
+
+ // Dummy.
+
+ |
+
+
+ // Dummy.
+
+ |
+
+
+
+
+ | Valid: exactly 46 character long description-. |
+ Invalid: exactly 46 character long description |
+
+
+|
+
+ // Dummy.
+
+ |
+
+
+ // Dummy.
+
+ |
+
+
+
+
+ | Valid: exactly 47 character long description--. |
+ Invalid: exactly 47 character long description. |
+
+
+|
+
+ // Dummy.
+
+ |
+
+
+ // Dummy.
+
+ |
+
+
+
+
+ | Valid: this description is longer than 46 characters and will wrap. |
+ Invalid: this description is longer than 46 characters and will wrap. |
+
+
+|
+
+ // Dummy.
+
+ |
+
+
+ // Dummy.
+
+ |
+
+
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleLineWrapping.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleLineWrapping.txt
new file mode 100644
index 00000000..11925c4c
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleLineWrapping.txt
@@ -0,0 +1,33 @@
+
+------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: CODE TITLE, LINE WRAPPING |
+------------------------------------------------------------
+
+This is a standard block.
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: exactly 45 character long description. | Invalid: exactly 45 char long description---. |
+----------------------------------------------------------------------------------------------------
+| // Dummy. | // Dummy. |
+----------------------------------------------------------------------------------------------------
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: exactly 46 character long description-. | Invalid: exactly 46 character long description |
+----------------------------------------------------------------------------------------------------
+| // Dummy. | // Dummy. |
+----------------------------------------------------------------------------------------------------
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: exactly 47 character long | Invalid: exactly 47 character long |
+| description--. | description. |
+----------------------------------------------------------------------------------------------------
+| // Dummy. | // Dummy. |
+----------------------------------------------------------------------------------------------------
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: this description is longer than 46 | Invalid: this description is longer than 46 |
+| characters and will wrap. | characters and will wrap. |
+----------------------------------------------------------------------------------------------------
+| // Dummy. | // Dummy. |
+----------------------------------------------------------------------------------------------------
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleWhitespace.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleWhitespace.html
new file mode 100644
index 00000000..65a5a25f
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleWhitespace.html
@@ -0,0 +1,115 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Code Title, whitespace handling §
+ This is a standard block.
+
+
+ | Valid: spaces at start of description. |
+ Invalid: spaces at end making line > 46 chars. |
+
+
+ | // Dummy. |
+ // Dummy. |
+
+
+
+
+ | Valid: spaces at start + end of description. |
+ Invalid: spaces ' ' in description. |
+
+
+ | // Note: description above without the// trailing whitespace fits in 46 chars. |
+ // Dummy. |
+
+
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleWhitespace.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleWhitespace.md
new file mode 100644
index 00000000..e623ba98
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleWhitespace.md
@@ -0,0 +1,44 @@
+# GeneratorTest Coding Standard
+
+## Code Title, whitespace handling
+
+This is a standard block.
+
+
+ | Valid: spaces at start of description. |
+ Invalid: spaces at end making line > 46 chars. |
+
+
+|
+
+ // Dummy.
+
+ |
+
+
+ // Dummy.
+
+ |
+
+
+
+
+ | Valid: spaces at start + end of description. |
+ Invalid: spaces ' ' in description. |
+
+
+|
+
+ // Note: description above without the
+ // trailing whitespace fits in 46 chars.
+
+ |
+
+
+ // Dummy.
+
+ |
+
+
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleWhitespace.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleWhitespace.txt
new file mode 100644
index 00000000..0db5a7df
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputCodeTitleWhitespace.txt
@@ -0,0 +1,20 @@
+
+------------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: CODE TITLE, WHITESPACE HANDLING |
+------------------------------------------------------------------
+
+This is a standard block.
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: spaces at start of description. | Invalid: spaces at end making line > 46 chars. |
+----------------------------------------------------------------------------------------------------
+| // Dummy. | // Dummy. |
+----------------------------------------------------------------------------------------------------
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: spaces at start + end of description. | Invalid: spaces ' ' in description. |
+----------------------------------------------------------------------------------------------------
+| // Note: description above without the | // Dummy. |
+| // trailing whitespace fits in 46 chars. | |
+----------------------------------------------------------------------------------------------------
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleCase.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleCase.html
new file mode 100644
index 00000000..e7226519
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleCase.html
@@ -0,0 +1,95 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ lowercase title §
+ This is a standard block.
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleCase.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleCase.md
new file mode 100644
index 00000000..0d63b04a
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleCase.md
@@ -0,0 +1,7 @@
+# GeneratorTest Coding Standard
+
+## lowercase title
+
+This is a standard block.
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleCase.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleCase.txt
new file mode 100644
index 00000000..c762a01d
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleCase.txt
@@ -0,0 +1,7 @@
+
+--------------------------------------------------
+| GENERATORTEST CODING STANDARD: LOWERCASE TITLE |
+--------------------------------------------------
+
+This is a standard block.
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleLength.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleLength.html
new file mode 100644
index 00000000..2640a6bf
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleLength.html
@@ -0,0 +1,95 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ This is a very very very very very very very very very very very long title §
+ This is a standard block.
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleLength.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleLength.md
new file mode 100644
index 00000000..252f5fca
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleLength.md
@@ -0,0 +1,7 @@
+# GeneratorTest Coding Standard
+
+## This is a very very very very very very very very very very very long title
+
+This is a standard block.
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleLength.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleLength.txt
new file mode 100644
index 00000000..2787b8cd
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleLength.txt
@@ -0,0 +1,7 @@
+
+--------------------------------------------------------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: THIS IS A VERY VERY VERY VERY VERY VERY VERY VERY VERY VERY VERY LONG TITLE |
+--------------------------------------------------------------------------------------------------------------
+
+This is a standard block.
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitlePCREFallback.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitlePCREFallback.html
new file mode 100644
index 00000000..b83b5e67
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitlePCREFallback.html
@@ -0,0 +1,96 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Documentation Title PCRE Fallback §
+ Testing the document title can get determined from the sniff name if missing.
+ This file name contains an acronym on purpose to test the word splitting.
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitlePCREFallback.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitlePCREFallback.md
new file mode 100644
index 00000000..844f4fbb
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitlePCREFallback.md
@@ -0,0 +1,9 @@
+# GeneratorTest Coding Standard
+
+## Documentation Title PCRE Fallback
+
+Testing the document title can get determined from the sniff name if missing.
+
+This file name contains an acronym on purpose to test the word splitting.
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitlePCREFallback.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitlePCREFallback.txt
new file mode 100644
index 00000000..342cdfda
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitlePCREFallback.txt
@@ -0,0 +1,9 @@
+
+--------------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: DOCUMENTATION TITLE PCRE FALLBACK |
+--------------------------------------------------------------------
+
+Testing the document title can get determined from the sniff name if missing.
+
+This file name contains an acronym on purpose to test the word splitting.
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleToAnchorSlug.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleToAnchorSlug.html
new file mode 100644
index 00000000..1d992399
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputDocumentationTitleToAnchorSlug.html
@@ -0,0 +1,107 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Table of Contents
+
+ URL enc@de non-àscíï chars §
+ The documentation title has non-ascii characters, which will be slugified for use in an HTML anchor link.
+ URL enc@de non-àscíï chars §
+ The documentation title has non-ascii characters, which will be slugified for use in an HTML anchor link.
+A duplicate anchor link will get a numeric suffix.
+ URL enc@de non-àscíï chars §
+ The documentation title has non-ascii characters, which will be slugified for use in an HTML anchor link.
+A duplicate anchor link will get a numeric suffix.
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputEmpty.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputEmpty.txt
new file mode 100644
index 00000000..e69de29b
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonMismatchedCodeElms.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonMismatchedCodeElms.html
new file mode 100644
index 00000000..59fcc7eb
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonMismatchedCodeElms.html
@@ -0,0 +1,105 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Code Comparison, mismatched code blocks §
+ This doc has two code elements, one only has a title, one has actual code. Unbalanced
+
+
+ | Code title |
+ |
+
+
+ |
+ $a = 'Example code'; |
+
+
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonMismatchedCodeElms.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonMismatchedCodeElms.md
new file mode 100644
index 00000000..bbd1f312
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonMismatchedCodeElms.md
@@ -0,0 +1,25 @@
+# GeneratorTest Coding Standard
+
+## Code Comparison, mismatched code blocks
+
+This doc has two code elements, one only has a title, one has actual code. Unbalanced
+
+
+ | Code title |
+ |
+
+
+|
+
+
+
+ |
+
+
+ $a = 'Example code';
+
+ |
+
+
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonMismatchedCodeElms.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonMismatchedCodeElms.txt
new file mode 100644
index 00000000..85b3f31a
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonMismatchedCodeElms.txt
@@ -0,0 +1,13 @@
+
+--------------------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: CODE COMPARISON, MISMATCHED CODE BLOCKS |
+--------------------------------------------------------------------------
+
+This doc has two code elements, one only has a title, one has actual code. Unbalanced
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Code title | |
+----------------------------------------------------------------------------------------------------
+| | $a = 'Example code'; |
+----------------------------------------------------------------------------------------------------
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonMissingCodeElm.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonMissingCodeElm.html
new file mode 100644
index 00000000..9f29d6af
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonMissingCodeElm.html
@@ -0,0 +1,95 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Code Comparison, missing code element §
+ This is a standard block.
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonMissingCodeElm.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonMissingCodeElm.md
new file mode 100644
index 00000000..4cd4b41b
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonMissingCodeElm.md
@@ -0,0 +1,7 @@
+# GeneratorTest Coding Standard
+
+## Code Comparison, missing code element
+
+This is a standard block.
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonMissingCodeElm.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonMissingCodeElm.txt
new file mode 100644
index 00000000..0c3c6d13
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonMissingCodeElm.txt
@@ -0,0 +1,7 @@
+
+------------------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: CODE COMPARISON, MISSING CODE ELEMENT |
+------------------------------------------------------------------------
+
+This is a standard block.
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonNoCode.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonNoCode.html
new file mode 100644
index 00000000..35d9144a
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonNoCode.html
@@ -0,0 +1,101 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Code Comparison, no code §
+ This is a standard block.
+
+
+ | Valid: no code. |
+ Invalid: no code. |
+
+
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonNoCode.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonNoCode.md
new file mode 100644
index 00000000..afbf1063
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonNoCode.md
@@ -0,0 +1,13 @@
+# GeneratorTest Coding Standard
+
+## Code Comparison, no code
+
+This is a standard block.
+
+
+ | Valid: no code. |
+ Invalid: no code. |
+
+
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonNoCode.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonNoCode.txt
new file mode 100644
index 00000000..f6091cab
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonNoCode.txt
@@ -0,0 +1,10 @@
+
+-----------------------------------------------------------
+| GENERATORTEST CODING STANDARD: CODE COMPARISON, NO CODE |
+-----------------------------------------------------------
+
+This is a standard block.
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: no code. | Invalid: no code. |
+----------------------------------------------------------------------------------------------------
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonNoContent.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonNoContent.html
new file mode 100644
index 00000000..b09f3ccf
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonNoContent.html
@@ -0,0 +1,95 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Code Comparison, no content §
+ This is a standard block.
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonNoContent.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonNoContent.md
new file mode 100644
index 00000000..1cea477f
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonNoContent.md
@@ -0,0 +1,7 @@
+# GeneratorTest Coding Standard
+
+## Code Comparison, no content
+
+This is a standard block.
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonNoContent.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonNoContent.txt
new file mode 100644
index 00000000..0227cdc8
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonNoContent.txt
@@ -0,0 +1,7 @@
+
+--------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: CODE COMPARISON, NO CONTENT |
+--------------------------------------------------------------
+
+This is a standard block.
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonOneEmptyCodeElm.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonOneEmptyCodeElm.html
new file mode 100644
index 00000000..7ee4bee4
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonOneEmptyCodeElm.html
@@ -0,0 +1,105 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Code Comparison, one empty code element §
+ This doc has two code elements, but only one of them has a title and actual code.
+
+
+ | Code title |
+ |
+
+
+ | $a = 'Example code'; |
+ |
+
+
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonOneEmptyCodeElm.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonOneEmptyCodeElm.md
new file mode 100644
index 00000000..829f1363
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonOneEmptyCodeElm.md
@@ -0,0 +1,25 @@
+# GeneratorTest Coding Standard
+
+## Code Comparison, one empty code element
+
+This doc has two code elements, but only one of them has a title and actual code.
+
+
+ | Code title |
+ |
+
+
+|
+
+ $a = 'Example code';
+
+ |
+
+
+
+
+ |
+
+
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonOneEmptyCodeElm.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonOneEmptyCodeElm.txt
new file mode 100644
index 00000000..7e937059
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonOneEmptyCodeElm.txt
@@ -0,0 +1,13 @@
+
+--------------------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: CODE COMPARISON, ONE EMPTY CODE ELEMENT |
+--------------------------------------------------------------------------
+
+This doc has two code elements, but only one of them has a title and actual code.
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Code title | |
+----------------------------------------------------------------------------------------------------
+| $a = 'Example code'; | |
+----------------------------------------------------------------------------------------------------
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonTwoEmptyCodeElms.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonTwoEmptyCodeElms.html
new file mode 100644
index 00000000..4cc553d4
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonTwoEmptyCodeElms.html
@@ -0,0 +1,95 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Code Comparison, two empty code elements §
+ This doc has two code elements, but neither of them contain any information.
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonTwoEmptyCodeElms.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonTwoEmptyCodeElms.md
new file mode 100644
index 00000000..7d138767
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonTwoEmptyCodeElms.md
@@ -0,0 +1,7 @@
+# GeneratorTest Coding Standard
+
+## Code Comparison, two empty code elements
+
+This doc has two code elements, but neither of them contain any information.
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonTwoEmptyCodeElms.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonTwoEmptyCodeElms.txt
new file mode 100644
index 00000000..775e7cee
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeComparisonTwoEmptyCodeElms.txt
@@ -0,0 +1,7 @@
+
+---------------------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: CODE COMPARISON, TWO EMPTY CODE ELEMENTS |
+---------------------------------------------------------------------------
+
+This doc has two code elements, but neither of them contain any information.
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeTitleEmpty.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeTitleEmpty.html
new file mode 100644
index 00000000..0efa0572
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeTitleEmpty.html
@@ -0,0 +1,101 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Code Title, empty §
+ This is a standard block.
+
+
+ | // Dummy. |
+ // Dummy. |
+
+
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeTitleEmpty.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeTitleEmpty.md
new file mode 100644
index 00000000..728ccc0b
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeTitleEmpty.md
@@ -0,0 +1,21 @@
+# GeneratorTest Coding Standard
+
+## Code Title, empty
+
+This is a standard block.
+
+
+|
+
+ // Dummy.
+
+ |
+
+
+ // Dummy.
+
+ |
+
+
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeTitleEmpty.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeTitleEmpty.txt
new file mode 100644
index 00000000..d3ac256b
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeTitleEmpty.txt
@@ -0,0 +1,11 @@
+
+----------------------------------------------------
+| GENERATORTEST CODING STANDARD: CODE TITLE, EMPTY |
+----------------------------------------------------
+
+This is a standard block.
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| // Dummy. | // Dummy. |
+----------------------------------------------------------------------------------------------------
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeTitleMissing.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeTitleMissing.html
new file mode 100644
index 00000000..755f5a18
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeTitleMissing.html
@@ -0,0 +1,101 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Code Title, missing §
+ This is a standard block.
+
+
+ | // Dummy. |
+ // Dummy. |
+
+
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeTitleMissing.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeTitleMissing.md
new file mode 100644
index 00000000..98e58229
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeTitleMissing.md
@@ -0,0 +1,21 @@
+# GeneratorTest Coding Standard
+
+## Code Title, missing
+
+This is a standard block.
+
+
+|
+
+ // Dummy.
+
+ |
+
+
+ // Dummy.
+
+ |
+
+
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeTitleMissing.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeTitleMissing.txt
new file mode 100644
index 00000000..3de51f08
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidCodeTitleMissing.txt
@@ -0,0 +1,11 @@
+
+------------------------------------------------------
+| GENERATORTEST CODING STANDARD: CODE TITLE, MISSING |
+------------------------------------------------------
+
+This is a standard block.
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| // Dummy. | // Dummy. |
+----------------------------------------------------------------------------------------------------
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidDocumentationTitleEmpty.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidDocumentationTitleEmpty.html
new file mode 100644
index 00000000..7d0d9aa5
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidDocumentationTitleEmpty.html
@@ -0,0 +1,105 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Documentation Title Empty §
+ The above "documentation" element has an empty title attribute.
+
+
+ | Valid: Lorem ipsum dolor sit amet. |
+ Invalid: Maecenas non rutrum dolor. |
+
+
+ | class Code {} |
+ class Comparison {} |
+
+
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidDocumentationTitleEmpty.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidDocumentationTitleEmpty.md
new file mode 100644
index 00000000..db8b2e40
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidDocumentationTitleEmpty.md
@@ -0,0 +1,25 @@
+# GeneratorTest Coding Standard
+
+## Documentation Title Empty
+
+The above "documentation" element has an empty title attribute.
+
+
+ | Valid: Lorem ipsum dolor sit amet. |
+ Invalid: Maecenas non rutrum dolor. |
+
+
+|
+
+ class Code {}
+
+ |
+
+
+ class Comparison {}
+
+ |
+
+
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidDocumentationTitleEmpty.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidDocumentationTitleEmpty.txt
new file mode 100644
index 00000000..85fe3779
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidDocumentationTitleEmpty.txt
@@ -0,0 +1,13 @@
+
+------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: DOCUMENTATION TITLE EMPTY |
+------------------------------------------------------------
+
+The above "documentation" element has an empty title attribute.
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: Lorem ipsum dolor sit amet. | Invalid: Maecenas non rutrum dolor. |
+----------------------------------------------------------------------------------------------------
+| class Code {} | class Comparison {} |
+----------------------------------------------------------------------------------------------------
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidDocumentationTitleMissing.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidDocumentationTitleMissing.html
new file mode 100644
index 00000000..2f51fd47
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidDocumentationTitleMissing.html
@@ -0,0 +1,105 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Documentation Title Missing §
+ The above "documentation" element is missing the title attribute.
+
+
+ | Valid: Lorem ipsum dolor sit amet. |
+ Invalid: Maecenas non rutrum dolor. |
+
+
+ | class Code {} |
+ class Comparison {} |
+
+
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidDocumentationTitleMissing.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidDocumentationTitleMissing.md
new file mode 100644
index 00000000..bd9ebfd1
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidDocumentationTitleMissing.md
@@ -0,0 +1,25 @@
+# GeneratorTest Coding Standard
+
+## Documentation Title Missing
+
+The above "documentation" element is missing the title attribute.
+
+
+ | Valid: Lorem ipsum dolor sit amet. |
+ Invalid: Maecenas non rutrum dolor. |
+
+
+|
+
+ class Code {}
+
+ |
+
+
+ class Comparison {}
+
+ |
+
+
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidDocumentationTitleMissing.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidDocumentationTitleMissing.txt
new file mode 100644
index 00000000..d4952038
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidDocumentationTitleMissing.txt
@@ -0,0 +1,13 @@
+
+--------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: DOCUMENTATION TITLE MISSING |
+--------------------------------------------------------------
+
+The above "documentation" element is missing the title attribute.
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: Lorem ipsum dolor sit amet. | Invalid: Maecenas non rutrum dolor. |
+----------------------------------------------------------------------------------------------------
+| class Code {} | class Comparison {} |
+----------------------------------------------------------------------------------------------------
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidStandardNoContent.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidStandardNoContent.html
new file mode 100644
index 00000000..2eecc8ae
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidStandardNoContent.html
@@ -0,0 +1,104 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Standard Element, no content §
+
+
+ | Valid: Lorem ipsum dolor sit amet. |
+ Invalid: Maecenas non rutrum dolor. |
+
+
+ | class Code {} |
+ class Comparison {} |
+
+
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidStandardNoContent.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidStandardNoContent.md
new file mode 100644
index 00000000..8d5dbc25
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidStandardNoContent.md
@@ -0,0 +1,24 @@
+# GeneratorTest Coding Standard
+
+## Standard Element, no content
+
+
+
+ | Valid: Lorem ipsum dolor sit amet. |
+ Invalid: Maecenas non rutrum dolor. |
+
+
+|
+
+ class Code {}
+
+ |
+
+
+ class Comparison {}
+
+ |
+
+
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidStandardNoContent.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidStandardNoContent.txt
new file mode 100644
index 00000000..c0b96c7b
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputInvalidStandardNoContent.txt
@@ -0,0 +1,11 @@
+
+---------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: STANDARD ELEMENT, NO CONTENT |
+---------------------------------------------------------------
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: Lorem ipsum dolor sit amet. | Invalid: Maecenas non rutrum dolor. |
+----------------------------------------------------------------------------------------------------
+| class Code {} | class Comparison {} |
+----------------------------------------------------------------------------------------------------
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputOneDoc.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputOneDoc.html
new file mode 100644
index 00000000..798ae637
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputOneDoc.html
@@ -0,0 +1,95 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ One Standard Block, No Code §
+ Documentation contains one standard block and no code comparison.
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputOneDoc.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputOneDoc.md
new file mode 100644
index 00000000..f6130736
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputOneDoc.md
@@ -0,0 +1,7 @@
+# GeneratorTest Coding Standard
+
+## One Standard Block, No Code
+
+Documentation contains one standard block and no code comparison.
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputOneDoc.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputOneDoc.txt
new file mode 100644
index 00000000..75bbdcb0
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputOneDoc.txt
@@ -0,0 +1,7 @@
+
+--------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: ONE STANDARD BLOCK, NO CODE |
+--------------------------------------------------------------
+
+Documentation contains one standard block and no code comparison.
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardBlankLines.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardBlankLines.html
new file mode 100644
index 00000000..ceaab32a
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardBlankLines.html
@@ -0,0 +1,97 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Standard Element, blank line handling §
+ There is a blank line at the start of this standard.
+ And the above blank line is also deliberate to test part of the logic.
+ Let's also end on a blank line to test that too.
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardBlankLines.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardBlankLines.md
new file mode 100644
index 00000000..f8663f14
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardBlankLines.md
@@ -0,0 +1,11 @@
+# GeneratorTest Coding Standard
+
+## Standard Element, blank line handling
+
+There is a blank line at the start of this standard.
+
+And the above blank line is also deliberate to test part of the logic.
+
+Let's also end on a blank line to test that too.
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardBlankLines.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardBlankLines.txt
new file mode 100644
index 00000000..1cdad0b1
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardBlankLines.txt
@@ -0,0 +1,11 @@
+
+------------------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: STANDARD ELEMENT, BLANK LINE HANDLING |
+------------------------------------------------------------------------
+
+There is a blank line at the start of this standard.
+
+And the above blank line is also deliberate to test part of the logic.
+
+Let's also end on a blank line to test that too.
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardEncoding.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardEncoding.html
new file mode 100644
index 00000000..93a77d45
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardEncoding.html
@@ -0,0 +1,96 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+
+ The use of tags in standard descriptions is allowed and their handling should be safeguarded.
+Other tags, like <a href="example.com">link</a>, <b>bold</bold>, <script></script> are not allowed and will be encoded for display when the HTML or Markdown report is used.
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardEncoding.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardEncoding.md
new file mode 100644
index 00000000..6183dc00
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardEncoding.md
@@ -0,0 +1,8 @@
+# GeneratorTest Coding Standard
+
+## Standard Element, handling of HTML tags
+
+The use of *tags* in standard descriptions is allowed and their handling should be *safeguarded*.
+Other tags, like <a href="example.com">link</a>, <b>bold</bold>, <script></script> are not allowed and will be encoded for display when the HTML or Markdown report is used.
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardEncoding.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardEncoding.txt
new file mode 100644
index 00000000..a464b86e
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardEncoding.txt
@@ -0,0 +1,9 @@
+
+--------------------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: STANDARD ELEMENT, HANDLING OF HTML TAGS |
+--------------------------------------------------------------------------
+
+The use of *tags* in standard descriptions is allowed and their handling should be *safeguarded*.
+Other tags, like link, bold, are not allowed
+and will be encoded for display when the HTML or Markdown report is used.
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardIndent.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardIndent.html
new file mode 100644
index 00000000..8cf7c341
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardIndent.html
@@ -0,0 +1,98 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Standard Element, indentation should be ignored §
+ This line has no indentation.
+This line has 4 spaces indentation.
+This line has 8 spaces indentation.
+This line has 4 spaces indentation.
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardIndent.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardIndent.md
new file mode 100644
index 00000000..46bea4c3
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardIndent.md
@@ -0,0 +1,10 @@
+# GeneratorTest Coding Standard
+
+## Standard Element, indentation should be ignored
+
+This line has no indentation.
+This line has 4 spaces indentation.
+This line has 8 spaces indentation.
+This line has 4 spaces indentation.
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardIndent.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardIndent.txt
new file mode 100644
index 00000000..fef00b9d
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardIndent.txt
@@ -0,0 +1,10 @@
+
+----------------------------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: STANDARD ELEMENT, INDENTATION SHOULD BE IGNORED |
+----------------------------------------------------------------------------------
+
+This line has no indentation.
+This line has 4 spaces indentation.
+This line has 8 spaces indentation.
+This line has 4 spaces indentation.
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardLineWrapping.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardLineWrapping.html
new file mode 100644
index 00000000..b9f4038a
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardLineWrapping.html
@@ -0,0 +1,97 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Standard Element, line wrapping handling §
+ This line has to be exactly 99 chars to test part of the logic.------------------------------------
+And this line has to be exactly 100 chars.----------------------------------------------------------
+And here we have a line which should start wrapping as it is longer than 100 chars. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean pellentesque iaculis enim quis hendrerit. Morbi ultrices in odio pharetra commodo.
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardLineWrapping.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardLineWrapping.md
new file mode 100644
index 00000000..c94bed46
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardLineWrapping.md
@@ -0,0 +1,9 @@
+# GeneratorTest Coding Standard
+
+## Standard Element, line wrapping handling
+
+This line has to be exactly 99 chars to test part of the logic.------------------------------------
+And this line has to be exactly 100 chars.----------------------------------------------------------
+And here we have a line which should start wrapping as it is longer than 100 chars. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean pellentesque iaculis enim quis hendrerit. Morbi ultrices in odio pharetra commodo.
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardLineWrapping.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardLineWrapping.txt
new file mode 100644
index 00000000..6f09fbe3
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStandardLineWrapping.txt
@@ -0,0 +1,11 @@
+
+---------------------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: STANDARD ELEMENT, LINE WRAPPING HANDLING |
+---------------------------------------------------------------------------
+
+This line has to be exactly 99 chars to test part of the logic.------------------------------------
+And this line has to be exactly 100 chars.----------------------------------------------------------
+And here we have a line which should start wrapping as it is longer than 100 chars. Lorem ipsum
+dolor sit amet, consectetur adipiscing elit. Aenean pellentesque iaculis enim quis hendrerit. Morbi
+ultrices in odio pharetra commodo.
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStructureDocs.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStructureDocs.html
new file mode 100644
index 00000000..9aa1d620
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStructureDocs.html
@@ -0,0 +1,200 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Table of Contents
+
+ Code Comparison Only, Missing Standard Block §
+
+
+ | Valid: Lorem ipsum dolor sit amet. |
+ Invalid: Maecenas non rutrum dolor. |
+
+
+ | class Code {} |
+ class Comparison {} |
+
+
+ One Standard Block, Code Comparison §
+ Documentation contains one standard block and one code comparison.
+
+
+ | Valid: Lorem ipsum dolor sit amet. |
+ Invalid: Maecenas non rutrum dolor. |
+
+
+ | class Code {} |
+ class Comparison {} |
+
+
+ One Standard Block, No Code §
+ Documentation contains one standard block and no code comparison.
+ One Standard Block, Two Code Comparisons §
+ Documentation contains one standard block and two code comparisons.
+
+
+ | Valid: Etiam commodo magna at vestibulum blandit. |
+ Invalid: Vivamus lacinia ante velit. |
+
+
+ | class Code {} |
+ class Comparison {} |
+
+
+
+
+ | Valid: Pellentesque nisi neque. |
+ Invalid: Mauris dictum metus quis maximus pharetra. |
+
+
+ | $one = 10; |
+ $a = 10; |
+
+
+ Two Standard Blocks, No Code §
+ This is standard block one.
+ This is standard block two.
+ Two Standard Blocks, One Code Comparison §
+ This is standard block one.
+
+
+ | Valid: Vestibulum et orci condimentum. |
+ Invalid: Donec in nisl ut tortor convallis interdum. |
+
+
+ | class Code {} |
+ class Comparison {} |
+
+
+ This is standard block two.
+ Two Standard Blocks, Three Code Comparisons §
+ This is standard block one.
+
+
+ | Valid: Vestibulum et orci condimentum. |
+ Invalid: Donec in nisl ut tortor convallis interdum. |
+
+
+ | class Code {} |
+ class Comparison {} |
+
+
+ This is standard block two.
+
+
+ | Valid: Pellentesque nisi neque. |
+ Invalid: Mauris dictum metus quis maximus pharetra. |
+
+
+ | $one = 10; |
+ $a = 10; |
+
+
+
+
+ | Valid: Quisque sagittis nisi vitae. |
+ Invalid: Morbi ac libero vitae lorem. |
+
+
+ | echo $foo; |
+ print $foo; |
+
+
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStructureDocs.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStructureDocs.md
new file mode 100644
index 00000000..fcbfcefe
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStructureDocs.md
@@ -0,0 +1,177 @@
+# GeneratorTest Coding Standard
+
+## Code Comparison Only, Missing Standard Block
+
+
+
+ | Valid: Lorem ipsum dolor sit amet. |
+ Invalid: Maecenas non rutrum dolor. |
+
+
+|
+
+ class Code {}
+
+ |
+
+
+ class Comparison {}
+
+ |
+
+
+
+## One Standard Block, Code Comparison
+
+Documentation contains one standard block and one code comparison.
+
+
+ | Valid: Lorem ipsum dolor sit amet. |
+ Invalid: Maecenas non rutrum dolor. |
+
+
+|
+
+ class Code {}
+
+ |
+
+
+ class Comparison {}
+
+ |
+
+
+
+## One Standard Block, No Code
+
+Documentation contains one standard block and no code comparison.
+
+## One Standard Block, Two Code Comparisons
+
+Documentation contains one standard block and two code comparisons.
+
+
+ | Valid: Etiam commodo magna at vestibulum blandit. |
+ Invalid: Vivamus lacinia ante velit. |
+
+
+|
+
+ class Code {}
+
+ |
+
+
+ class Comparison {}
+
+ |
+
+
+
+
+ | Valid: Pellentesque nisi neque. |
+ Invalid: Mauris dictum metus quis maximus pharetra. |
+
+
+|
+
+ $one = 10;
+
+ |
+
+
+ $a = 10;
+
+ |
+
+
+
+## Two Standard Blocks, No Code
+
+This is standard block one.
+This is standard block two.
+
+## Two Standard Blocks, One Code Comparison
+
+This is standard block one.
+
+
+ | Valid: Vestibulum et orci condimentum. |
+ Invalid: Donec in nisl ut tortor convallis interdum. |
+
+
+|
+
+ class Code {}
+
+ |
+
+
+ class Comparison {}
+
+ |
+
+
+This is standard block two.
+
+## Two Standard Blocks, Three Code Comparisons
+
+This is standard block one.
+
+
+ | Valid: Vestibulum et orci condimentum. |
+ Invalid: Donec in nisl ut tortor convallis interdum. |
+
+
+|
+
+ class Code {}
+
+ |
+
+
+ class Comparison {}
+
+ |
+
+
+This is standard block two.
+
+
+ | Valid: Pellentesque nisi neque. |
+ Invalid: Mauris dictum metus quis maximus pharetra. |
+
+
+|
+
+ $one = 10;
+
+ |
+
+
+ $a = 10;
+
+ |
+
+
+
+
+ | Valid: Quisque sagittis nisi vitae. |
+ Invalid: Morbi ac libero vitae lorem. |
+
+
+|
+
+ echo $foo;
+
+ |
+
+
+ print $foo;
+
+ |
+
+
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStructureDocs.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStructureDocs.txt
new file mode 100644
index 00000000..4ca1dbca
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputStructureDocs.txt
@@ -0,0 +1,106 @@
+
+-------------------------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: CODE COMPARISON ONLY, MISSING STANDARD BLOCK |
+-------------------------------------------------------------------------------
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: Lorem ipsum dolor sit amet. | Invalid: Maecenas non rutrum dolor. |
+----------------------------------------------------------------------------------------------------
+| class Code {} | class Comparison {} |
+----------------------------------------------------------------------------------------------------
+
+
+----------------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: ONE STANDARD BLOCK, CODE COMPARISON |
+----------------------------------------------------------------------
+
+Documentation contains one standard block and one code comparison.
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: Lorem ipsum dolor sit amet. | Invalid: Maecenas non rutrum dolor. |
+----------------------------------------------------------------------------------------------------
+| class Code {} | class Comparison {} |
+----------------------------------------------------------------------------------------------------
+
+
+--------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: ONE STANDARD BLOCK, NO CODE |
+--------------------------------------------------------------
+
+Documentation contains one standard block and no code comparison.
+
+
+---------------------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: ONE STANDARD BLOCK, TWO CODE COMPARISONS |
+---------------------------------------------------------------------------
+
+Documentation contains one standard block and two code comparisons.
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: Etiam commodo magna at vestibulum | Invalid: Vivamus lacinia ante velit. |
+| blandit. | |
+----------------------------------------------------------------------------------------------------
+| class Code {} | class Comparison {} |
+----------------------------------------------------------------------------------------------------
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: Pellentesque nisi neque. | Invalid: Mauris dictum metus quis maximus |
+| | pharetra. |
+----------------------------------------------------------------------------------------------------
+| $one = 10; | $a = 10; |
+----------------------------------------------------------------------------------------------------
+
+
+---------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: TWO STANDARD BLOCKS, NO CODE |
+---------------------------------------------------------------
+
+This is standard block one.
+
+This is standard block two.
+
+
+---------------------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: TWO STANDARD BLOCKS, ONE CODE COMPARISON |
+---------------------------------------------------------------------------
+
+This is standard block one.
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: Vestibulum et orci condimentum. | Invalid: Donec in nisl ut tortor convallis |
+| | interdum. |
+----------------------------------------------------------------------------------------------------
+| class Code {} | class Comparison {} |
+----------------------------------------------------------------------------------------------------
+
+This is standard block two.
+
+
+------------------------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: TWO STANDARD BLOCKS, THREE CODE COMPARISONS |
+------------------------------------------------------------------------------
+
+This is standard block one.
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: Vestibulum et orci condimentum. | Invalid: Donec in nisl ut tortor convallis |
+| | interdum. |
+----------------------------------------------------------------------------------------------------
+| class Code {} | class Comparison {} |
+----------------------------------------------------------------------------------------------------
+
+This is standard block two.
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: Pellentesque nisi neque. | Invalid: Mauris dictum metus quis maximus |
+| | pharetra. |
+----------------------------------------------------------------------------------------------------
+| $one = 10; | $a = 10; |
+----------------------------------------------------------------------------------------------------
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: Quisque sagittis nisi vitae. | Invalid: Morbi ac libero vitae lorem. |
+----------------------------------------------------------------------------------------------------
+| echo $foo; | print $foo; |
+----------------------------------------------------------------------------------------------------
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedOneElmAtWrongLevel.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedOneElmAtWrongLevel.html
new file mode 100644
index 00000000..82fe7500
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedOneElmAtWrongLevel.html
@@ -0,0 +1,95 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ One element correct, one element wrong level §
+ This is a standard block at the correct level.
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedOneElmAtWrongLevel.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedOneElmAtWrongLevel.md
new file mode 100644
index 00000000..aa9cc472
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedOneElmAtWrongLevel.md
@@ -0,0 +1,7 @@
+# GeneratorTest Coding Standard
+
+## One element correct, one element wrong level
+
+This is a standard block at the correct level.
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedOneElmAtWrongLevel.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedOneElmAtWrongLevel.txt
new file mode 100644
index 00000000..4d1aaeaa
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedOneElmAtWrongLevel.txt
@@ -0,0 +1,7 @@
+
+-------------------------------------------------------------------------------
+| GENERATORTEST CODING STANDARD: ONE ELEMENT CORRECT, ONE ELEMENT WRONG LEVEL |
+-------------------------------------------------------------------------------
+
+This is a standard block at the correct level.
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedSuperfluousCodeElement.html b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedSuperfluousCodeElement.html
new file mode 100644
index 00000000..de06568d
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedSuperfluousCodeElement.html
@@ -0,0 +1,105 @@
+
+
+ GeneratorTest Coding Standards
+
+
+
+ GeneratorTest Coding Standards
+ Superfluous code element §
+ This is a standard block.
+
+
+ | Valid: Checking handling of blank lines. |
+ Invalid: Checking handling of blank lines. |
+
+
+ | $valid = true; |
+ $invalid = true; |
+
+
+
+
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedSuperfluousCodeElement.md b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedSuperfluousCodeElement.md
new file mode 100644
index 00000000..f6cdad94
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedSuperfluousCodeElement.md
@@ -0,0 +1,25 @@
+# GeneratorTest Coding Standard
+
+## Superfluous code element
+
+This is a standard block.
+
+
+ | Valid: Checking handling of blank lines. |
+ Invalid: Checking handling of blank lines. |
+
+
+|
+
+ $valid = true;
+
+ |
+
+
+ $invalid = true;
+
+ |
+
+
+
+Documentation generated on *REDACTED* by [PHP_CodeSniffer *VERSION*](https://github.com/PHPCSStandards/PHP_CodeSniffer)
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedSuperfluousCodeElement.txt b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedSuperfluousCodeElement.txt
new file mode 100644
index 00000000..1307eebf
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Expectations/ExpectedOutputUnsupportedSuperfluousCodeElement.txt
@@ -0,0 +1,13 @@
+
+-----------------------------------------------------------
+| GENERATORTEST CODING STANDARD: SUPERFLUOUS CODE ELEMENT |
+-----------------------------------------------------------
+
+This is a standard block.
+
+----------------------------------------- CODE COMPARISON ------------------------------------------
+| Valid: Checking handling of blank lines. | Invalid: Checking handling of blank lines. |
+----------------------------------------------------------------------------------------------------
+| $valid = true; | $invalid = true; |
+----------------------------------------------------------------------------------------------------
+
diff --git a/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/HTMLDouble.php b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/HTMLDouble.php
new file mode 100644
index 00000000..695c0c6d
--- /dev/null
+++ b/vendor/squizlabs/php_codesniffer/tests/Core/Generators/Fixtures/HTMLDouble.php
@@ -0,0 +1,70 @@
+Documentation generated on #REDACTED# by PHP_CodeSniffer #VERSION#
+