-
-**Bad** (the total length of the line is **340** characters - from [Lorem Ipsum](https://www.lipsum.com/feed/html))
-
-```PHP
-$longtext = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse condimentum nec est eget posuere. Proin at sagittis risus. Fusce faucibus lectus leo, eu ornare velit tristique eu. Curabitur elementum facilisis ultricies. Praesent dictum fermentum lectus a rhoncus. Donec vitae justo metus. Sed molestie faucibus egestas.';
-```
-
-**Good** (use `heredoc` syntax - this will add line-breaks)
-
-```PHP
-$longtext = <<
-
-_Reference_: [`Generic.Files.LineLength`](https://github.com/squizlabs/PHP_CodeSniffer/blob/master/src/Standards/Generic/Sniffs/Files/LineLengthSniff.php)
+There is no maximum line length.
# Strings
@@ -743,24 +685,4 @@ $text = (string)$number;
_Reference_: [`Squiz.WhiteSpace.CastSpacing`](https://github.com/squizlabs/PHP_CodeSniffer/blob/master/src/Standards/Squiz/Sniffs/WhiteSpace/CastSpacingSniff.php)
# Arrays
-## Always use the long array syntax
-
-Arrays should be initialized using the long array syntax.
-
-Example
-
-**Bad**
-
-```PHP
-$data = [ 'hello' => 'world' ];
-```
-
-**Good**
-
-```PHP
-$data = array('hello' => 'world');
-```
-
-
-
-_Reference_: [`Generic.Arrays.DisallowShortArraySyntax`](https://github.com/squizlabs/PHP_CodeSniffer/blob/master/src/Standards/Generic/Sniffs/Arrays/DisallowShortArraySyntaxSniff.php)
\ No newline at end of file
+## Always use the short array syntax
diff --git a/phpcs.xml b/phpcs.xml
index d937f3c9..2db0553a 100644
--- a/phpcs.xml
+++ b/phpcs.xml
@@ -20,8 +20,8 @@
-
-
+
+