FLOW3 Ruleset¶
See http://flow3.typo3.org/documentation/codingguidelines.html for reference
Possible sniffs¶
- Namings (see http://flow3.typo3.org/documentation/codingguidelines/php.html#namespace-and-class-names)
- file names
- class/interface/exception names
- method names
- package names
- variable names
constant names
Opening / closing PHP tag ()- Comments
inline comments (must be indented one level more than surrounding source code)- doc comments (all methods except constructor need @return annotation, proper @param annotations)
Stringsquotes (single quotes to enclose literal strings)concatenation ('foo' . 'bar')
- control structures
if statements (space between if and opening brace, curly braces required, else/elseif on the same line as curly braces)- switch statements
- Whitespaces
no trailing whitespaceIndentation (tabs)EOL (unix style)
- Annotations (http://flow3.typo3.org/documentation/codingguidelines/php.html#overview-of-documentation-annotations is not up-to-date anymore)
- Header (namespace declaration, license header(?), ...)
- Always === instead of == (?)
Output of first alpha version for TYPO3.FLOW3 package¶
FILE: ...W3/Packages/Framework/TYPO3.FLOW3/Classes/Aop/Advice/AbstractAdvice.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
74 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...rk/TYPO3.FLOW3/Classes/Aop/Builder/AbstractMethodInterceptorBuilder.php
--------------------------------------------------------------------------------
FOUND 7 ERROR(S) AFFECTING 5 LINE(S)
--------------------------------------------------------------------------------
95 | ERROR | Inline control structures are not allowed
105 | ERROR | Variable "$argumentIndex" not allowed in double quoted string;
| | use concatenation instead
105 | ERROR | Variable "$methodParameterName" not allowed in double quoted
| | string; use concatenation instead
105 | ERROR | Variable "$argumentIndex" not allowed in double quoted string;
| | use concatenation instead
107 | ERROR | Variable "$methodParameterName" not allowed in double quoted
| | string; use concatenation instead
109 | ERROR | Variable "$methodParameterName" not allowed in double quoted
| | string; use concatenation instead
125 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...YPO3.FLOW3/Classes/Aop/Builder/AdvicedConstructorInterceptorBuilder.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
34 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...ork/TYPO3.FLOW3/Classes/Aop/Builder/AdvicedMethodInterceptorBuilder.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
33 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...3/Packages/Framework/TYPO3.FLOW3/Classes/Aop/Builder/ClassNameIndex.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
161 | ERROR | Whitespace must be added before and after the arithmetic
| | operator. Found "$right-$left". Expected "$right - $left"
161 | ERROR | Whitespace must be added before and after the arithmetic
| | operator. Found ")/2". Expected ") / 2"
--------------------------------------------------------------------------------
FILE: ...ackages/Framework/TYPO3.FLOW3/Classes/Aop/Builder/ProxyClassBuilder.php
--------------------------------------------------------------------------------
FOUND 14 ERROR(S) AND 2 WARNING(S) AFFECTING 15 LINE(S)
--------------------------------------------------------------------------------
232 | ERROR | Inline control structures are not allowed
250 | WARNING | Code after THROW statement cannot be executed
250 | ERROR | Inline control structures are not allowed
251 | WARNING | Code after THROW statement cannot be executed
370 | ERROR | Inline control structures are not allowed
394 | ERROR | Inline control structures are not allowed
463 | ERROR | Whitespace must be added after single asteriks expected "*
| | $this->FLOW3_Aop_Proxy_targetMethodsAndGroupedAdvices =
| | array(" found
| | "* $this->FLOW3_Aop_Proxy_targetMethodsAndGroupedAdvices =
| | array("
464 | ERROR | Whitespace must be added after single asteriks expected "*
| | 'getSomeProperty' => array(" found "* 'getSomeProperty' =>
| | array("
465 | ERROR | Whitespace must be added after single asteriks expected "*
| | 'TYPO3\FLOW3\Aop\Advice\AroundAdvice' => array(" found
| | "* 'TYPO3\FLOW3\Aop\Advice\AroundAdvice' => array("
466 | ERROR | Whitespace must be added after single asteriks expected "*
| | new
| | \TYPO3\FLOW3\Aop\Advice\AroundAdvice('TYPO3\Foo\SomeAspect',
| | 'aroundAdvice',
| | \\TYPO3\\FLOW3\\Core\\Bootstrap::$staticObjectManager,
| | function() { ... })," found "* new
| | \TYPO3\FLOW3\Aop\Advice\AroundAdvice('TYPO3\Foo\SomeAspect',
| | 'aroundAdvice',
| | \\TYPO3\\FLOW3\\Core\\Bootstrap::$staticObjectManager,
| | function() { ... }),"
467 | ERROR | Whitespace must be added after single asteriks expected "*
| | )," found "* ),"
468 | ERROR | Whitespace must be added after single asteriks expected "*
| | )," found "* ),"
469 | ERROR | Whitespace must be added after single asteriks expected "*
| | );" found "* );"
477 | ERROR | Inline control structures are not allowed
580 | ERROR | Inline control structures are not allowed
690 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...elopment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Aop/JoinPoint.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
78 | ERROR | Inline control structures are not allowed
137 | ERROR | Inline control structures are not allowed
150 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: .../FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Aop/Pointcut/Pointcut.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
169 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...k/TYPO3.FLOW3/Classes/Aop/Pointcut/PointcutClassAnnotatedWithFilter.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
62 | ERROR | Tabs must be used to indent lines; spaces are not allowed
--------------------------------------------------------------------------------
FILE: .../Framework/TYPO3.FLOW3/Classes/Aop/Pointcut/PointcutClassNameFilter.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
69 | ERROR | Expected "try {\n...} catch (...) {\n"; found "try
| | {\n...}\n catch (...) {\n"
--------------------------------------------------------------------------------
FILE: ...Framework/TYPO3.FLOW3/Classes/Aop/Pointcut/PointcutExpressionParser.php
--------------------------------------------------------------------------------
FOUND 6 ERROR(S) AFFECTING 6 LINE(S)
--------------------------------------------------------------------------------
43 | ERROR | Tabs must be used to indent lines; spaces are not allowed
44 | ERROR | Tabs must be used to indent lines; spaces are not allowed
45 | ERROR | Tabs must be used to indent lines; spaces are not allowed
46 | ERROR | Tabs must be used to indent lines; spaces are not allowed
411 | ERROR | Tabs must be used to indent lines; spaces are not allowed
438 | ERROR | Tabs must be used to indent lines; spaces are not allowed
--------------------------------------------------------------------------------
FILE: .../Packages/Framework/TYPO3.FLOW3/Classes/Aop/Pointcut/PointcutFilter.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
81 | ERROR | Inline control structures are not allowed
103 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: .../Framework/TYPO3.FLOW3/Classes/Aop/Pointcut/PointcutFilterComposite.php
--------------------------------------------------------------------------------
FOUND 16 ERROR(S) AFFECTING 16 LINE(S)
--------------------------------------------------------------------------------
68 | ERROR | Inline control structures are not allowed
78 | ERROR | Inline control structures are not allowed
89 | ERROR | Inline control structures are not allowed
96 | ERROR | Inline control structures are not allowed
210 | ERROR | Inline control structures are not allowed
230 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
236 | ERROR | Inline control structures are not allowed
245 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
254 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
261 | ERROR | Inline control structures are not allowed
262 | ERROR | Inline control structures are not allowed
292 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
294 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
324 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
326 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
366 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
--------------------------------------------------------------------------------
FILE: ...Framework/TYPO3.FLOW3/Classes/Aop/Pointcut/PointcutMethodNameFilter.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
59 | ERROR | Inline control structures are not allowed
61 | ERROR | Tabs must be used to indent lines; spaces are not allowed
--------------------------------------------------------------------------------
FILE: ...es/Framework/TYPO3.FLOW3/Classes/Aop/Pointcut/PointcutSettingFilter.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
133 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...ackages/Framework/TYPO3.FLOW3/Classes/Cache/Backend/AbstractBackend.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
103 | ERROR | Inline control structures are not allowed
118 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...OW3/Packages/Framework/TYPO3.FLOW3/Classes/Cache/Backend/ApcBackend.php
--------------------------------------------------------------------------------
FOUND 5 ERROR(S) AFFECTING 5 LINE(S)
--------------------------------------------------------------------------------
54 | ERROR | Inline control structures are not allowed
85 | ERROR | Inline control structures are not allowed
86 | ERROR | Inline control structures are not allowed
178 | ERROR | Inline control structures are not allowed
213 | ERROR | TRUE, FALSE and NULL must be uppercase; expected "FALSE" but
| | found "false"
--------------------------------------------------------------------------------
FILE: ...W3/Packages/Framework/TYPO3.FLOW3/Classes/Cache/Backend/FileBackend.php
--------------------------------------------------------------------------------
FOUND 24 ERROR(S) AFFECTING 24 LINE(S)
--------------------------------------------------------------------------------
89 | ERROR | Expected "for (...) {\n"; found "for(...) {\n"
141 | ERROR | Inline control structures are not allowed
142 | ERROR | Inline control structures are not allowed
179 | ERROR | Inline control structures are not allowed
180 | ERROR | Inline control structures are not allowed
181 | ERROR | Inline control structures are not allowed
182 | ERROR | Inline control structures are not allowed
196 | ERROR | Inline control structures are not allowed
202 | ERROR | Inline control structures are not allowed
217 | ERROR | Inline control structures are not allowed
238 | ERROR | Inline control structures are not allowed
251 | ERROR | Inline control structures are not allowed
252 | ERROR | Inline control structures are not allowed
253 | ERROR | Inline control structures are not allowed
256 | ERROR | Inline control structures are not allowed
257 | ERROR | Inline control structures are not allowed
273 | ERROR | Expected "for (...) {\n"; found "for(...) {\n"
274 | ERROR | Inline control structures are not allowed
281 | ERROR | Inline control structures are not allowed
282 | ERROR | Whitespace must be added after the arithmetic operator. Found "
| | -self". Expected " - self"
316 | ERROR | Inline control structures are not allowed
332 | ERROR | Inline control structures are not allowed
351 | ERROR | Inline control structures are not allowed
376 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...ckages/Framework/TYPO3.FLOW3/Classes/Cache/Backend/MemcachedBackend.php
--------------------------------------------------------------------------------
FOUND 8 ERROR(S) AFFECTING 8 LINE(S)
--------------------------------------------------------------------------------
86 | ERROR | Inline control structures are not allowed
123 | ERROR | Inline control structures are not allowed
172 | ERROR | Inline control structures are not allowed
173 | ERROR | Inline control structures are not allowed
174 | ERROR | Inline control structures are not allowed
185 | ERROR | Expected "if (...) {\n"; found "if(...) {\n"
220 | ERROR | Space found before semicolon; expected "1;" but found "1 ;"
288 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...W3/Packages/Framework/TYPO3.FLOW3/Classes/Cache/Backend/NullBackend.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
14 | ERROR | Inline comments must be indented by one tab more then the code
| | next line.
119 | ERROR | Inline comments must be indented by one tab more then the code
| | next line.
--------------------------------------------------------------------------------
FILE: ...OW3/Packages/Framework/TYPO3.FLOW3/Classes/Cache/Backend/PdoBackend.php
--------------------------------------------------------------------------------
FOUND 7 ERROR(S) AFFECTING 6 LINE(S)
--------------------------------------------------------------------------------
103 | ERROR | Inline control structures are not allowed
104 | ERROR | Inline control structures are not allowed
114 | ERROR | Inline control structures are not allowed
119 | ERROR | Inline control structures are not allowed
206 | ERROR | The double slash comments must be on a seperate line.
206 | ERROR | Inline comments indents 129 tab(s) too much; expected indent
| | only by one tab more then the code next line.
240 | ERROR | Expected "try {\n...} catch (...) {\n"; found "try {\n...} catch
| | (...) {"
--------------------------------------------------------------------------------
FILE: .../Framework/TYPO3.FLOW3/Classes/Cache/Backend/TransientMemoryBackend.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
44 | ERROR | Inline control structures are not allowed
45 | ERROR | Inline control structures are not allowed
82 | ERROR | Expected "if (...) {\n"; found "if (...) {\n"
--------------------------------------------------------------------------------
FILE: ...ent/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Cache/CacheManager.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
72 | ERROR | Inline control structures are not allowed
242 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...kages/Framework/TYPO3.FLOW3/Classes/Cache/Frontend/AbstractFrontend.php
--------------------------------------------------------------------------------
FOUND 4 ERROR(S) AFFECTING 4 LINE(S)
--------------------------------------------------------------------------------
43 | ERROR | Inline control structures are not allowed
77 | ERROR | Inline control structures are not allowed
90 | ERROR | Inline control structures are not allowed
113 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...3/Packages/Framework/TYPO3.FLOW3/Classes/Cache/Frontend/PhpFrontend.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
43 | ERROR | Inline control structures are not allowed
44 | ERROR | Inline control structures are not allowed
46 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...ackages/Framework/TYPO3.FLOW3/Classes/Cache/Frontend/StringFrontend.php
--------------------------------------------------------------------------------
FOUND 5 ERROR(S) AFFECTING 5 LINE(S)
--------------------------------------------------------------------------------
33 | ERROR | Inline control structures are not allowed
34 | ERROR | Inline control structures are not allowed
36 | ERROR | Inline control structures are not allowed
50 | ERROR | Inline control structures are not allowed
63 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...kages/Framework/TYPO3.FLOW3/Classes/Cache/Frontend/VariableFrontend.php
--------------------------------------------------------------------------------
FOUND 4 ERROR(S) AFFECTING 4 LINE(S)
--------------------------------------------------------------------------------
51 | ERROR | Inline control structures are not allowed
53 | ERROR | Inline control structures are not allowed
70 | ERROR | Inline control structures are not allowed
88 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: .../FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Cli/CommandController.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
83 | ERROR | Space found before comma in function call
128 | ERROR | Inline control structures are not allowed
128 | ERROR | Space found before comma in function call
--------------------------------------------------------------------------------
FILE: ...ent/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Cli/CommandManager.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
173 | ERROR | Expected "for (...) {\n"; found "for(...) {\n"
209 | ERROR | Expected "if (...) {\n"; found "if (...)\n {\n"
223 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...W3/Packages/Framework/TYPO3.FLOW3/Classes/Cli/CommandRequestHandler.php
--------------------------------------------------------------------------------
FOUND 5 ERROR(S) AFFECTING 4 LINE(S)
--------------------------------------------------------------------------------
147 | ERROR | String " Exception code #" does not require double quotes;
| | use single quotes instead
148 | ERROR | String " File " does not require double quotes;
| | use single quotes instead
149 | ERROR | String " Exception reference #" does not require double quotes;
| | use single quotes instead
151 | ERROR | Variable "$messageLine" not allowed in double quoted string; use
| | concatenation instead
151 | ERROR | Tabs must be used to indent lines; spaces are not allowed
--------------------------------------------------------------------------------
FILE: ...evelopment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Cli/Request.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
167 | ERROR | Inline control structures are not allowed
189 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...velopment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Cli/Response.php
--------------------------------------------------------------------------------
FOUND 5 ERROR(S) AFFECTING 5 LINE(S)
--------------------------------------------------------------------------------
153 | ERROR | String "$1" does not require double quotes; use single quotes
| | instead
154 | ERROR | String "$1" does not require double quotes; use single quotes
| | instead
155 | ERROR | String "$1" does not require double quotes; use single quotes
| | instead
156 | ERROR | String "$1" does not require double quotes; use single quotes
| | instead
157 | ERROR | String "$1" does not require double quotes; use single quotes
| | instead
--------------------------------------------------------------------------------
FILE: ...LOW3/Packages/Framework/TYPO3.FLOW3/Classes/Cli/SlaveRequestHandler.php
--------------------------------------------------------------------------------
FOUND 5 ERROR(S) AFFECTING 4 LINE(S)
--------------------------------------------------------------------------------
126 | ERROR | String " Exception code #" does not require double quotes;
| | use single quotes instead
127 | ERROR | String " File " does not require double quotes;
| | use single quotes instead
128 | ERROR | String " Exception reference #" does not require double quotes;
| | use single quotes instead
130 | ERROR | Variable "$messageLine" not allowed in double quoted string; use
| | concatenation instead
130 | ERROR | Tabs must be used to indent lines; spaces are not allowed
--------------------------------------------------------------------------------
FILE: ...ckages/Framework/TYPO3.FLOW3/Classes/Command/CacheCommandController.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
118 | ERROR | String
| | "G1syShtbMkobWzE7MzdtG1sxOzQ0bSAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAbWzBtChtbMTszN20bWzE7NDRtICAgICAgKioqKiBDT01NT0RPUkUgNjQgQkFTSUMgVjIgKioqKiAgICAgIBtbMG0KG1sxOzM3bRtbMTs0NG0gIDY0SyBSQU0gU1lTVEVNICAzODkxMSBCQVNJQyBCWVRFUyBGUkVFICAgG1swbQobWzE7MzdtG1sxOzQ0bSBSRUFEWS4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAbWzBtChtbMTszN20bWzE7NDRtIEZMVVNIIENBQ0hFICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIBtbMG0KG1sxOzM3bRtbMTs0NG0gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgG1swbQobWzE7MzdtG1sxOzQ0bSBPSywgRkxVU0hFRCBBTEwgQ0FDSEVTLiAgICAgICAgICAgICAgICAgICAbWzBtChtbMTszN20bWzE7NDRtIFJFQURZLiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIBtbMG0KG1sxOzM3bRtbMTs0NG0gG1sxOzQ3bSAbWzE7NDRtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAbWzBtChtbMTszN20bWzE7NDRtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIBtbMG0KG1sxOzM3bRtbMTs0NG0gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgG1swbQobWzE7MzdtG1sxOzQ0bSAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAbWzBtChtbMTszN20bWzE7NDRtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIBtbMG0KG1sxOzM3bRtbMTs0NG0gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgG1swbQobWzE7MzdtG1sxOzQ0bSAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAbWzBtChtbMTszN20bWzE7NDRtICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIBtbMG0KG1sxOzM3bRtbMTs0NG0gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgG1swbQoK"
| | does not require double quotes; use single quotes instead
151 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...ramework/TYPO3.FLOW3/Classes/Command/ConfigurationCommandController.php
--------------------------------------------------------------------------------
FOUND 5 ERROR(S) AFFECTING 5 LINE(S)
--------------------------------------------------------------------------------
43 | ERROR | Expected "if (...) {\n"; found "if (...){\n"
45 | ERROR | Expected "if (...) {\n"; found "if (...){\n"
48 | ERROR | Expected "if (...) {\n"; found "if (...){\n"
57 | ERROR | Expected "if (...) {\n"; found "if (...){\n"
61 | ERROR | Expected "foreach (...) {\n"; found "foreach (...){\n"
--------------------------------------------------------------------------------
FILE: ...ackages/Framework/TYPO3.FLOW3/Classes/Command/CoreCommandController.php
--------------------------------------------------------------------------------
FOUND 8 ERROR(S) AFFECTING 7 LINE(S)
--------------------------------------------------------------------------------
210 | ERROR | TRUE, FALSE and NULL must be uppercase; expected "TRUE" but
| | found "true"
250 | ERROR | Variable "$commandLine" not allowed in double quoted string; use
| | concatenation instead
284 | ERROR | String concat is not required here; use a single string instead
284 | ERROR | String concat is not required here; use a single string instead
292 | ERROR | TRUE, FALSE and NULL must be uppercase; expected "NULL" but
| | found "null"
293 | ERROR | TRUE, FALSE and NULL must be uppercase; expected "NULL" but
| | found "null"
341 | ERROR | Inline comments must be indented by one tab more then the code
| | next line.
342 | ERROR | Inline comments must be indented by one tab more then the code
| | next line.
--------------------------------------------------------------------------------
FILE: ...ges/Framework/TYPO3.FLOW3/Classes/Command/DoctrineCommandController.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
357 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...ackages/Framework/TYPO3.FLOW3/Classes/Command/HelpCommandController.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
285 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...ages/Framework/TYPO3.FLOW3/Classes/Command/PackageCommandController.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
405 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...ages/Framework/TYPO3.FLOW3/Classes/Command/RoutingCommandController.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
132 | ERROR | Expected "if (...) {\n"; found "if(...) {\n"
--------------------------------------------------------------------------------
FILE: ...es/Framework/TYPO3.FLOW3/Classes/Configuration/ConfigurationManager.php
--------------------------------------------------------------------------------
FOUND 5 ERROR(S) AFFECTING 5 LINE(S)
--------------------------------------------------------------------------------
119 | ERROR | Expected 1 space between the closing parenthesis and the opening
| | brace; found 0
348 | ERROR | Inline control structures are not allowed
370 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
392 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
393 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
--------------------------------------------------------------------------------
FILE: ...t/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Core/Booting/Scripts.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
67 | ERROR | String "Force-flushed caches." does not require double quotes;
| | use single quotes instead
450 | ERROR | String concat is not required here; use a single string instead
452 | ERROR | String concat is not required here; use a single string instead
--------------------------------------------------------------------------------
FILE: ...lopment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Core/Bootstrap.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
544 | ERROR | Perl-style comments are not allowed. Use "// Comment." or "/*
| | comment */" instead.
562 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: .../Packages/Framework/TYPO3.FLOW3/Classes/Error/DebugExceptionHandler.php
--------------------------------------------------------------------------------
FOUND 11 ERROR(S) AFFECTING 11 LINE(S)
--------------------------------------------------------------------------------
41 | ERROR | String "HTTP/1.1 500 Internal Server Error" does not require
| | double quotes; use single quotes instead
45 | ERROR | TRUE, FALSE and NULL must be uppercase; expected "TRUE" but
| | found "true"
156 | ERROR | Space found before semicolon; expected "' ';" but found "' ' ;"
182 | ERROR | Line concatenation operator must be at the end of the line
183 | ERROR | Line concatenation operator must be at the end of the line
184 | ERROR | Line concatenation operator must be at the end of the line
186 | ERROR | Line concatenation operator must be at the end of the line
188 | ERROR | Tabs must be used to indent lines; spaces are not allowed
189 | ERROR | Line concatenation operator must be at the end of the line
190 | ERROR | Tabs must be used to indent lines; spaces are not allowed
191 | ERROR | Line concatenation operator must be at the end of the line
--------------------------------------------------------------------------------
FILE: ...lopment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Error/Debugger.php
--------------------------------------------------------------------------------
FOUND 6 ERROR(S) AFFECTING 6 LINE(S)
--------------------------------------------------------------------------------
104 | ERROR | Must use "self::" for local static member reference
106 | ERROR | Must use "self::" for local static member reference
236 | ERROR | Inline control structures are not allowed
302 | ERROR | String "…" does not require double quotes; use single quotes
| | instead
380 | ERROR | Whitespace must be added before and after the arithmetic
| | operator. Found "$line-1". Expected "$line - 1"
480 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...ent/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Error/ErrorHandler.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
60 | ERROR | Expected "if (...) {\n"; found "if(...) {\n"
--------------------------------------------------------------------------------
FILE: ...velopment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Error/Notice.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
34 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...ages/Framework/TYPO3.FLOW3/Classes/Error/ProductionExceptionHandler.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
39 | ERROR | String "HTTP/1.1 500 Internal Server Error" does not require
| | double quotes; use single quotes instead
--------------------------------------------------------------------------------
FILE: .../Development/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Exception.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
36 | ERROR | Space found before comma in function call
--------------------------------------------------------------------------------
FILE: ...nt/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Http/Client/Browser.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
62 | ERROR | Inline comments must be indented by one tab more then the code
| | next line.
--------------------------------------------------------------------------------
FILE: ...velopment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Http/Headers.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
54 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
--------------------------------------------------------------------------------
FILE: ...velopment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Http/Request.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
97 | ERROR | Space found before comma in function call
--------------------------------------------------------------------------------
FILE: ...elopment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Http/Response.php
--------------------------------------------------------------------------------
FOUND 4 ERROR(S) AFFECTING 4 LINE(S)
--------------------------------------------------------------------------------
63 | ERROR | Perl-style comments are not allowed. Use "// Comment." or "/*
| | comment */" instead.
172 | ERROR | Inline control structures are not allowed
173 | ERROR | Inline control structures are not allowed
206 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...d/Development/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Http/Uri.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
91 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...Packages/Framework/TYPO3.FLOW3/Classes/I18n/Cldr/Reader/DatesReader.php
--------------------------------------------------------------------------------
FOUND 4 ERROR(S) AFFECTING 4 LINE(S)
--------------------------------------------------------------------------------
348 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
355 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
360 | ERROR | Inline control structures are not allowed
368 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...ckages/Framework/TYPO3.FLOW3/Classes/I18n/Cldr/Reader/PluralsReader.php
--------------------------------------------------------------------------------
FOUND 6 ERROR(S) AFFECTING 6 LINE(S)
--------------------------------------------------------------------------------
168 | ERROR | Inline control structures are not allowed
169 | ERROR | Inline control structures are not allowed
173 | ERROR | Inline control structures are not allowed
174 | ERROR | Inline control structures are not allowed
178 | ERROR | Inline control structures are not allowed
179 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...ages/Framework/TYPO3.FLOW3/Classes/I18n/Formatter/DatetimeFormatter.php
--------------------------------------------------------------------------------
FOUND 8 ERROR(S) AFFECTING 8 LINE(S)
--------------------------------------------------------------------------------
199 | ERROR | Inline control structures are not allowed
203 | ERROR | Inline control structures are not allowed
225 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
227 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
234 | ERROR | Inline control structures are not allowed
240 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
255 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
264 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
--------------------------------------------------------------------------------
FILE: ...evelopment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/I18n/Locale.php
--------------------------------------------------------------------------------
FOUND 27 ERROR(S) AFFECTING 24 LINE(S)
--------------------------------------------------------------------------------
90 | ERROR | Inline control structures are not allowed
91 | ERROR | Inline control structures are not allowed
94 | ERROR | Inline control structures are not allowed
95 | ERROR | Inline control structures are not allowed
96 | ERROR | Inline control structures are not allowed
130 | ERROR | Tabs must be used to indent lines; spaces are not allowed
131 | ERROR | Tabs must be used to indent lines; spaces are not allowed
132 | ERROR | Tabs must be used to indent lines; spaces are not allowed
134 | ERROR | Tabs must be used to indent lines; spaces are not allowed
135 | ERROR | Tabs must be used to indent lines; spaces are not allowed
136 | ERROR | Tabs must be used to indent lines; spaces are not allowed
137 | ERROR | Tabs must be used to indent lines; spaces are not allowed
139 | ERROR | Tabs must be used to indent lines; spaces are not allowed
140 | ERROR | Tabs must be used to indent lines; spaces are not allowed
141 | ERROR | Tabs must be used to indent lines; spaces are not allowed
142 | ERROR | Tabs must be used to indent lines; spaces are not allowed
144 | ERROR | Tabs must be used to indent lines; spaces are not allowed
145 | ERROR | Tabs must be used to indent lines; spaces are not allowed
146 | ERROR | Tabs must be used to indent lines; spaces are not allowed
148 | ERROR | Inline control structures are not allowed
148 | ERROR | Tabs must be used to indent lines; spaces are not allowed
149 | ERROR | Inline control structures are not allowed
149 | ERROR | Tabs must be used to indent lines; spaces are not allowed
150 | ERROR | Inline control structures are not allowed
150 | ERROR | Tabs must be used to indent lines; spaces are not allowed
152 | ERROR | Tabs must be used to indent lines; spaces are not allowed
153 | ERROR | Tabs must be used to indent lines; spaces are not allowed
--------------------------------------------------------------------------------
FILE: ...3/Packages/Framework/TYPO3.FLOW3/Classes/I18n/Parser/DatetimeParser.php
--------------------------------------------------------------------------------
FOUND 20 ERROR(S) AND 2 WARNING(S) AFFECTING 21 LINE(S)
--------------------------------------------------------------------------------
162 | ERROR | Inline control structures are not allowed
173 | ERROR | Inline control structures are not allowed
181 | ERROR | Inline control structures are not allowed
191 | ERROR | Inline control structures are not allowed
214 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
224 | ERROR | Inline control structures are not allowed
226 | WARNING | Code after THROW statement cannot be executed
226 | ERROR | Inline control structures are not allowed
227 | WARNING | Code after THROW statement cannot be executed
263 | ERROR | Inline control structures are not allowed
360 | ERROR | Inline control structures are not allowed
363 | ERROR | Inline control structures are not allowed
369 | ERROR | Inline control structures are not allowed
376 | ERROR | Inline control structures are not allowed
379 | ERROR | Inline control structures are not allowed
382 | ERROR | Inline control structures are not allowed
393 | ERROR | Inline control structures are not allowed
398 | ERROR | Inline control structures are not allowed
404 | ERROR | Inline control structures are not allowed
410 | ERROR | Inline control structures are not allowed
428 | ERROR | Inline comments indents 1 tab(s) too much; expected indent
| | only by one tab more then the code next line.
455 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...OW3/Packages/Framework/TYPO3.FLOW3/Classes/I18n/Parser/NumberParser.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
243 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
255 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
--------------------------------------------------------------------------------
FILE: ...velopment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/I18n/Service.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
247 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: .../Packages/Framework/TYPO3.FLOW3/Classes/Log/Backend/AbstractBackend.php
--------------------------------------------------------------------------------
FOUND 4 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
84 | ERROR | Whitespace must be added before and after the assignment
| | operator. Found "$k=>$v". Expected "$k => $v"
86 | ERROR | No space found after comma in function call
86 | ERROR | Whitespace must be added before and after the arithmetic
| | operator. Found "$spaces+3". Expected "$spaces + 3"
91 | ERROR | No space found after comma in function call
--------------------------------------------------------------------------------
FILE: ...3/Packages/Framework/TYPO3.FLOW3/Classes/Log/Backend/ConsoleBackend.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
59 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...LOW3/Packages/Framework/TYPO3.FLOW3/Classes/Log/Backend/FileBackend.php
--------------------------------------------------------------------------------
FOUND 4 ERROR(S) AFFECTING 4 LINE(S)
--------------------------------------------------------------------------------
149 | ERROR | Inline control structures are not allowed
154 | ERROR | Inline control structures are not allowed
163 | ERROR | Inline control structures are not allowed
188 | ERROR | Whitespace must be added before and after the arithmetic
| | operator. Found "$logFileCount+1". Expected "$logFileCount + 1"
--------------------------------------------------------------------------------
FILE: ...Development/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Log/Logger.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
71 | ERROR | Inline control structures are not allowed
128 | ERROR | Space found before comma in function call
147 | ERROR | Space found before semicolon; expected ");" but found ") ;"
--------------------------------------------------------------------------------
FILE: ...nt/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Monitor/FileMonitor.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
140 | ERROR | Inline control structures are not allowed
156 | ERROR | Inline control structures are not allowed
222 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...ment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Mvc/ActionRequest.php
--------------------------------------------------------------------------------
FOUND 5 ERROR(S) AFFECTING 4 LINE(S)
--------------------------------------------------------------------------------
357 | ERROR | Expected "if (...) {\n"; found "if (...) {\n"
362 | ERROR | Whitespace must be added after the arithmetic operator. Found "
| | -(". Expected " - ("
362 | ERROR | Whitespace must be added before and after the arithmetic
| | operator. Found ")+10". Expected ") + 10"
398 | ERROR | Expected "if (...) {\n"; found "if (...) {\n"
470 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...ges/Framework/TYPO3.FLOW3/Classes/Mvc/Controller/AbstractController.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
90 | ERROR | Space found before comma in function call
--------------------------------------------------------------------------------
FILE: ...kages/Framework/TYPO3.FLOW3/Classes/Mvc/Controller/ActionController.php
--------------------------------------------------------------------------------
FOUND 5 ERROR(S) AFFECTING 4 LINE(S)
--------------------------------------------------------------------------------
176 | ERROR | Inline control structures are not allowed
176 | ERROR | Space found before comma in function call
246 | ERROR | Inline control structures are not allowed
248 | ERROR | Inline control structures are not allowed
312 | ERROR | Whitespace must be added before the assignment operator. Found
| | "$packageKey.= ". Expected "$packageKey .= "
--------------------------------------------------------------------------------
FILE: ...LOW3/Packages/Framework/TYPO3.FLOW3/Classes/Mvc/Controller/Argument.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
101 | ERROR | Inline control structures are not allowed
102 | ERROR | Inline control structures are not allowed
341 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...OW3/Packages/Framework/TYPO3.FLOW3/Classes/Mvc/Controller/Arguments.php
--------------------------------------------------------------------------------
FOUND 6 ERROR(S) AFFECTING 6 LINE(S)
--------------------------------------------------------------------------------
39 | ERROR | Inline control structures are not allowed
55 | ERROR | Inline control structures are not allowed
98 | ERROR | Inline control structures are not allowed
195 | ERROR | Inline control structures are not allowed
219 | ERROR | Inline control structures are not allowed
221 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...W3/Packages/Framework/TYPO3.FLOW3/Classes/Mvc/FlashMessageContainer.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
54 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
74 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
--------------------------------------------------------------------------------
FILE: ...ackages/Framework/TYPO3.FLOW3/Classes/Mvc/Routing/AbstractRoutePart.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
48 | ERROR | Tabs must be used to indent lines; spaces are not allowed
148 | ERROR | Tabs must be used to indent lines; spaces are not allowed
187 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...Packages/Framework/TYPO3.FLOW3/Classes/Mvc/Routing/DynamicRoutePart.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
191 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...ackages/Framework/TYPO3.FLOW3/Classes/Mvc/Routing/IdentityRoutePart.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
242 | ERROR | Inline comments must be indented by one tab more then the code
| | next line.
--------------------------------------------------------------------------------
FILE: ...ackages/Framework/TYPO3.FLOW3/Classes/Mvc/Routing/ObjectPathMapping.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
115 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...amework/TYPO3.FLOW3/Classes/Mvc/Routing/ObjectPathMappingRepository.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
63 | ERROR | Inline comments must be indented by one tab more then the code
| | next line.
81 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...ment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Mvc/Routing/Route.php
--------------------------------------------------------------------------------
FOUND 5 ERROR(S) AFFECTING 5 LINE(S)
--------------------------------------------------------------------------------
48 | ERROR | Tabs must be used to indent lines; spaces are not allowed
181 | ERROR | Inline control structures are not allowed
195 | ERROR | Tabs must be used to indent lines; spaces are not allowed
474 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
619 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...ckages/Framework/TYPO3.FLOW3/Classes/Mvc/Routing/RoutePartInterface.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
88 | ERROR | Tabs must be used to indent lines; spaces are not allowed
--------------------------------------------------------------------------------
FILE: ...ent/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Mvc/Routing/Router.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
249 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: .../Packages/Framework/TYPO3.FLOW3/Classes/Mvc/Routing/StaticRoutePart.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
73 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Mvc/Routing/UriBuilder.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
321 | ERROR | Expected "while (...) {\n"; found "while(...) {\n"
--------------------------------------------------------------------------------
FILE: .../FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Mvc/View/AbstractView.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
56 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
89 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...ment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Mvc/View/JsonView.php
--------------------------------------------------------------------------------
FOUND 24 ERROR(S) AFFECTING 24 LINE(S)
--------------------------------------------------------------------------------
44 | ERROR | Whitespace must be added after single asteriks expected "*
| | 'variable1' => array(" found "* 'variable1' => array("
45 | ERROR | Whitespace must be added after single asteriks expected "*
| | '_only' => array('property1', 'property2', ...)" found
| | "* '_only' => array('property1', 'property2', ...)"
46 | ERROR | Whitespace must be added after single asteriks expected "* ),"
| | found "* ),"
47 | ERROR | Whitespace must be added after single asteriks expected "*
| | 'variable2' => array(" found "* 'variable2' => array("
48 | ERROR | Whitespace must be added after single asteriks expected "*
| | '_exclude' => array('property3', 'property4, ...)" found "*
| | '_exclude' => array('property3', 'property4, ...)"
49 | ERROR | Whitespace must be added after single asteriks expected "* ),"
| | found "* ),"
50 | ERROR | Whitespace must be added after single asteriks expected "*
| | 'variable3' => array(" found "* 'variable3' => array("
51 | ERROR | Whitespace must be added after single asteriks expected "*
| | '_exclude' => array('secretTitle')," found "* '_exclude' =>
| | array('secretTitle'),"
52 | ERROR | Whitespace must be added after single asteriks expected "*
| | '_descend' => array(" found "* '_descend' => array("
53 | ERROR | Whitespace must be added after single asteriks expected "*
| | 'customer' => array(" found "* 'customer' => array("
54 | ERROR | Whitespace must be added after single asteriks expected "*
| | '_only' => array('firstName', 'lastName')" found
| | "* '_only' => array('firstName', 'lastName')"
55 | ERROR | Whitespace must be added after single asteriks expected "*
| | )" found "* )"
56 | ERROR | Whitespace must be added after single asteriks expected "* )"
| | found "* )"
57 | ERROR | Whitespace must be added after single asteriks expected "* ),"
| | found "* ),"
58 | ERROR | Whitespace must be added after single asteriks expected "*
| | 'somearrayvalue' => array(" found "* 'somearrayvalue' =>
| | array("
59 | ERROR | Whitespace must be added after single asteriks expected "*
| | '_descendAll' => array(" found "* '_descendAll' => array("
60 | ERROR | Whitespace must be added after single asteriks expected "*
| | '_only' => array('property1')" found "* '_only' =>
| | array('property1')"
61 | ERROR | Whitespace must be added after single asteriks expected "* )"
| | found "* )"
62 | ERROR | Whitespace must be added after single asteriks expected "* )"
| | found "* )"
141 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
164 | ERROR | Inline control structures are not allowed
165 | ERROR | Inline control structures are not allowed
193 | ERROR | Inline control structures are not allowed
194 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: .../FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Mvc/View/NotFoundView.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
40 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...es/Framework/TYPO3.FLOW3/Classes/Object/Configuration/Configuration.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
178 | ERROR | Whitespace must be added before the assignment operator. Found
| | "factoryObjectName= ". Expected "factoryObjectName = "
--------------------------------------------------------------------------------
FILE: ...ework/TYPO3.FLOW3/Classes/Object/Configuration/ConfigurationBuilder.php
--------------------------------------------------------------------------------
FOUND 6 ERROR(S) AFFECTING 4 LINE(S)
--------------------------------------------------------------------------------
295 | ERROR | Expected 1 space after comma in function call; 2 found
297 | ERROR | Expected 1 space after comma in function call; 2 found
379 | ERROR | Variable "$className" not allowed in double quoted string; use
| | concatenation instead
379 | ERROR | Variable "$propertyName" not allowed in double quoted string;
| | use concatenation instead
384 | ERROR | Variable "$className" not allowed in double quoted string; use
| | concatenation instead
384 | ERROR | Variable "$propertyName" not allowed in double quoted string;
| | use concatenation instead
--------------------------------------------------------------------------------
FILE: ...rk/TYPO3.FLOW3/Classes/Object/DependencyInjection/ProxyClassBuilder.php
--------------------------------------------------------------------------------
FOUND 12 ERROR(S) AFFECTING 9 LINE(S)
--------------------------------------------------------------------------------
176 | ERROR | Expected "if (...) {\n"; found "if (...) {\n"
315 | ERROR | Whitespace must be added after the arithmetic operator. Found "
| | +1". Expected " + 1"
364 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
369 | ERROR | String concat is not required here; use a single string instead
371 | ERROR | String concat is not required here; use a single string instead
449 | ERROR | Variable "$setterMethodName" not allowed in double quoted
| | string; use concatenation instead
449 | ERROR | Variable "$preparedSetterArgument" not allowed in double quoted
| | string; use concatenation instead
454 | ERROR | Variable "$setterMethodName" not allowed in double quoted
| | string; use concatenation instead
454 | ERROR | Variable "$preparedSetterArgument" not allowed in double quoted
| | string; use concatenation instead
458 | ERROR | Variable "$propertyName" not allowed in double quoted string;
| | use concatenation instead
458 | ERROR | Variable "$preparedSetterArgument" not allowed in double quoted
| | string; use concatenation instead
550 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...t/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Object/ObjectManager.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
321 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
--------------------------------------------------------------------------------
FILE: ...LOW3/Packages/Framework/TYPO3.FLOW3/Classes/Object/ObjectSerializer.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
111 | ERROR | Tabs must be used to indent lines; spaces are not allowed
209 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
--------------------------------------------------------------------------------
FILE: ...LOW3/Packages/Framework/TYPO3.FLOW3/Classes/Object/Proxy/ProxyClass.php
--------------------------------------------------------------------------------
FOUND 4 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
239 | ERROR | Variable "$namespace" not allowed in double quoted string; use
| | concatenation instead
245 | ERROR | Variable "$proxyClassName" not allowed in double quoted string;
| | use concatenation instead
245 | ERROR | Variable "$originalClassName" not allowed in double quoted
| | string; use concatenation instead
249 | ERROR | String "}" does not require double quotes; use single quotes
| | instead
--------------------------------------------------------------------------------
FILE: ...ackages/Framework/TYPO3.FLOW3/Classes/Object/Proxy/ProxyConstructor.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
52 | ERROR | String " " does not require double quotes; use single quotes
| | instead
--------------------------------------------------------------------------------
FILE: ...OW3/Packages/Framework/TYPO3.FLOW3/Classes/Object/Proxy/ProxyMethod.php
--------------------------------------------------------------------------------
FOUND 10 ERROR(S) AFFECTING 6 LINE(S)
--------------------------------------------------------------------------------
147 | ERROR | String " " does not require double quotes; use single quotes
| | instead
147 | ERROR | String " " does not require double quotes; use single quotes
| | instead
147 | ERROR | String " function " does not require double quotes; use single
| | quotes instead
147 | ERROR | String "(" does not require double quotes; use single quotes
| | instead
151 | ERROR | String " \$result = " does not require double quotes; use
| | single quotes instead
155 | ERROR | String " return " does not require double quotes; use single
| | quotes instead
222 | ERROR | Inline control structures are not allowed
245 | ERROR | String " = " does not require double quotes; use single quotes
| | instead
270 | ERROR | String "parent::" does not require double quotes; use single
| | quotes instead
270 | ERROR | String "(" does not require double quotes; use single quotes
| | instead
--------------------------------------------------------------------------------
FILE: ...ld/Development/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Package.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
64 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...ork/TYPO3.FLOW3/Classes/Package/Controller/PackageManagerController.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
171 | ERROR | Space found before semicolon; expected "PHP_EOL;" but found
| | "PHP_EOL
;"
--------------------------------------------------------------------------------
FILE: ...pment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Package/MetaData.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
187 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...s/Framework/TYPO3.FLOW3/Classes/Package/MetaData/AbstractConstraint.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
52 | ERROR | TRUE, FALSE and NULL must be uppercase; expected "NULL" but found
| | "null"
52 | ERROR | TRUE, FALSE and NULL must be uppercase; expected "NULL" but found
| | "null"
--------------------------------------------------------------------------------
FILE: ...ges/Framework/TYPO3.FLOW3/Classes/Package/MetaData/SystemConstraint.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
38 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...3/Packages/Framework/TYPO3.FLOW3/Classes/Package/MetaData/XmlWriter.php
--------------------------------------------------------------------------------
FOUND 12 ERROR(S) AFFECTING 12 LINE(S)
--------------------------------------------------------------------------------
32 | ERROR | Inline control structures are not allowed
34 | ERROR | TRUE, FALSE and NULL must be uppercase; expected "TRUE" but
| | found "true"
95 | ERROR | Inline control structures are not allowed
96 | ERROR | Inline control structures are not allowed
97 | ERROR | Inline control structures are not allowed
98 | ERROR | Inline control structures are not allowed
102 | ERROR | Inline control structures are not allowed
103 | ERROR | Inline control structures are not allowed
122 | ERROR | Inline control structures are not allowed
123 | ERROR | Inline control structures are not allowed
127 | ERROR | Inline control structures are not allowed
133 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...opment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Package/Package.php
--------------------------------------------------------------------------------
FOUND 7 ERROR(S) AFFECTING 7 LINE(S)
--------------------------------------------------------------------------------
71 | ERROR | Inline control structures are not allowed
72 | ERROR | Inline control structures are not allowed
73 | ERROR | Inline control structures are not allowed
285 | ERROR | Inline control structures are not allowed
286 | ERROR | Inline control structures are not allowed
288 | ERROR | Expected "try {\n...} catch (...) {\n"; found "try {\n...}
| | catch(...) {\n"
294 | ERROR | Whitespace must be added before and after the arithmetic
| | operator. Found "$recursionLevel+1". Expected "$recursionLevel +
| | 1"
--------------------------------------------------------------------------------
FILE: ...FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Package/PackageManager.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
264 | ERROR | Inline control structures are not allowed
265 | ERROR | Inline control structures are not allowed
293 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...kages/Framework/TYPO3.FLOW3/Classes/Package/PackageManagerInterface.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
103 | ERROR | TRUE, FALSE and NULL must be uppercase; expected "NULL" but
| | found "null"
--------------------------------------------------------------------------------
FILE: ...ework/TYPO3.FLOW3/Classes/Persistence/Aspect/PersistenceMagicAspect.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
118 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...ages/Framework/TYPO3.FLOW3/Classes/Persistence/Doctrine/CountWalker.php
--------------------------------------------------------------------------------
FOUND 6 ERROR(S) AFFECTING 5 LINE(S)
--------------------------------------------------------------------------------
34 | ERROR | TRUE, FALSE and NULL must be uppercase; expected "NULL" but found
| | "null"
35 | ERROR | TRUE, FALSE and NULL must be uppercase; expected "NULL" but found
| | "null"
37 | ERROR | TRUE, FALSE and NULL must be uppercase; expected "NULL" but found
| | "null"
52 | ERROR | TRUE, FALSE and NULL must be uppercase; expected "TRUE" but found
| | "true"
52 | ERROR | TRUE, FALSE and NULL must be uppercase; expected "NULL" but found
| | "null"
57 | ERROR | TRUE, FALSE and NULL must be uppercase; expected "NULL" but found
| | "null"
--------------------------------------------------------------------------------
FILE: ...3/Classes/Persistence/Doctrine/Mapping/Driver/Flow3AnnotationDriver.php
--------------------------------------------------------------------------------
FOUND 18 ERROR(S) AFFECTING 18 LINE(S)
--------------------------------------------------------------------------------
151 | ERROR | Perl-style comments are not allowed. Use "// Comment." or "/*
| | comment */" instead.
152 | ERROR | Perl-style comments are not allowed. Use "// Comment." or "/*
| | comment */" instead.
153 | ERROR | Perl-style comments are not allowed. Use "// Comment." or "/*
| | comment */" instead.
154 | ERROR | Perl-style comments are not allowed. Use "// Comment." or "/*
| | comment */" instead.
163 | ERROR | String "@NamedQueries should contain an array of @NamedQuery
| | annotations." does not require double quotes; use single quotes
| | instead
168 | ERROR | String "@NamedQueries should contain an array of @NamedQuery
| | annotations." does not require double quotes; use single quotes
| | instead
214 | ERROR | Functions must not contain multiple empty lines in a row; found
| | 2 empty lines
612 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
643 | ERROR | Constants must be uppercase; expected PREPERSIST but found
| | prePersist
647 | ERROR | Constants must be uppercase; expected POSTPERSIST but found
| | postPersist
651 | ERROR | Constants must be uppercase; expected PREUPDATE but found
| | preUpdate
655 | ERROR | Constants must be uppercase; expected POSTUPDATE but found
| | postUpdate
659 | ERROR | Constants must be uppercase; expected PREREMOVE but found
| | preRemove
663 | ERROR | Constants must be uppercase; expected POSTREMOVE but found
| | postRemove
667 | ERROR | Constants must be uppercase; expected POSTLOAD but found
| | postLoad
671 | ERROR | Constants must be uppercase; expected PREFLUSH but found
| | preFlush
678 | ERROR | Constants must be uppercase; expected POSTLOAD but found
| | postLoad
680 | ERROR | Constants must be uppercase; expected POSTLOAD but found
| | postLoad
--------------------------------------------------------------------------------
FILE: ...amework/TYPO3.FLOW3/Classes/Persistence/Doctrine/PersistenceManager.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
69 | ERROR | Constants must be uppercase; expected ONFLUSH but found onFlush
99 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...3/Packages/Framework/TYPO3.FLOW3/Classes/Persistence/Doctrine/Query.php
--------------------------------------------------------------------------------
FOUND 4 ERROR(S) AFFECTING 4 LINE(S)
--------------------------------------------------------------------------------
137 | ERROR | Must use "self::" for local static member reference
377 | ERROR | Inline comments must be indented by one tab more then the code
| | next line.
378 | ERROR | Inline comments must be indented by one tab more then the code
| | next line.
497 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
--------------------------------------------------------------------------------
FILE: ...Packages/Framework/TYPO3.FLOW3/Classes/Persistence/Doctrine/Service.php
--------------------------------------------------------------------------------
FOUND 13 ERROR(S) AFFECTING 12 LINE(S)
--------------------------------------------------------------------------------
145 | ERROR | Expected "if (...) {\n"; found "if (...){\n"
180 | ERROR | Tabs must be used to indent lines; spaces are not allowed
181 | ERROR | Tabs must be used to indent lines; spaces are not allowed
182 | ERROR | Tabs must be used to indent lines; spaces are not allowed
405 | ERROR | Tabs must be used to indent lines; spaces are not allowed
406 | ERROR | Tabs must be used to indent lines; spaces are not allowed
407 | ERROR | Tabs must be used to indent lines; spaces are not allowed
413 | ERROR | Tabs must be used to indent lines; spaces are not allowed
414 | ERROR | Tabs must be used to indent lines; spaces are not allowed
415 | ERROR | Tabs must be used to indent lines; spaces are not allowed
439 | ERROR | Variable "$currentPlatform" not allowed in double quoted string;
| | use concatenation instead
439 | ERROR | String "" does not require double quotes; use single quotes
| | instead
445 | ERROR | Variable "$query" not allowed in double quoted string; use
| | concatenation instead
--------------------------------------------------------------------------------
FILE: ...ork/TYPO3.FLOW3/Classes/Persistence/Generic/Backend/AbstractBackend.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
316 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...ckages/Framework/TYPO3.FLOW3/Classes/Persistence/Generic/DataMapper.php
--------------------------------------------------------------------------------
FOUND 4 ERROR(S) AFFECTING 4 LINE(S)
--------------------------------------------------------------------------------
145 | ERROR | Inline control structures are not allowed
231 | ERROR | Inline control structures are not allowed
279 | ERROR | Inline control structures are not allowed
303 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...mework/TYPO3.FLOW3/Classes/Persistence/Generic/LazySplObjectStorage.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
86 | ERROR | Inline comments must be indented by one tab more then the code
| | next line.
177 | ERROR | Inline comments must be indented by one tab more then the code
| | next line.
--------------------------------------------------------------------------------
FILE: ...ramework/TYPO3.FLOW3/Classes/Persistence/Generic/PersistenceManager.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
115 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...W3/Packages/Framework/TYPO3.FLOW3/Classes/Persistence/Generic/Query.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
392 | ERROR | Expected 1 space between the closing parenthesis and the opening
| | brace; found 0
--------------------------------------------------------------------------------
FILE: .../Packages/Framework/TYPO3.FLOW3/Classes/Persistence/Generic/Session.php
--------------------------------------------------------------------------------
FOUND 7 ERROR(S) AFFECTING 7 LINE(S)
--------------------------------------------------------------------------------
150 | ERROR | Whitespace must be added after the assignment operator. Found "
| | =&". Expected " = &"
218 | ERROR | Inline control structures are not allowed
221 | ERROR | Inline control structures are not allowed
224 | ERROR | Inline control structures are not allowed
227 | ERROR | Inline control structures are not allowed
230 | ERROR | Inline control structures are not allowed
233 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Persistence/Repository.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
239 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...LOW3/Packages/Framework/TYPO3.FLOW3/Classes/Property/PropertyMapper.php
--------------------------------------------------------------------------------
FOUND 5 ERROR(S) AFFECTING 5 LINE(S)
--------------------------------------------------------------------------------
89 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
156 | ERROR | Inline control structures are not allowed
188 | ERROR | Inline control structures are not allowed
242 | ERROR | Inline control structures are not allowed
270 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...ramework/TYPO3.FLOW3/Classes/Property/TypeConverter/ObjectConverter.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
191 | ERROR | Space found before comma in function call
--------------------------------------------------------------------------------
FILE: ...YPO3.FLOW3/Classes/Property/TypeConverter/PersistentObjectConverter.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
121 | ERROR | Whitespace must be added before and after the comparison
| | operator. Found "]!==NULL". Expected "] !== NULL"
136 | ERROR | Inline comments must be indented by one tab more then the code
| | next line.
137 | ERROR | Inline comments must be indented by one tab more then the code
| | next line.
--------------------------------------------------------------------------------
FILE: ...FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Reflection/ClassSchema.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
162 | ERROR | Inline control structures are not allowed
187 | ERROR | Inline control structures are not allowed
226 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: .../Packages/Framework/TYPO3.FLOW3/Classes/Reflection/DocCommentParser.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
50 | ERROR | Inline control structures are not allowed
53 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
78 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...LOW3/Packages/Framework/TYPO3.FLOW3/Classes/Reflection/ObjectAccess.php
--------------------------------------------------------------------------------
FOUND 9 ERROR(S) AFFECTING 9 LINE(S)
--------------------------------------------------------------------------------
170 | ERROR | Inline control structures are not allowed
171 | ERROR | Inline control structures are not allowed
203 | ERROR | Inline control structures are not allowed
237 | ERROR | Inline control structures are not allowed
263 | ERROR | Inline control structures are not allowed
280 | ERROR | Inline control structures are not allowed
286 | ERROR | Inline control structures are not allowed
287 | ERROR | Inline control structures are not allowed
300 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...ackages/Framework/TYPO3.FLOW3/Classes/Reflection/PropertyReflection.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
84 | ERROR | Inline control structures are not allowed
85 | ERROR | Inline control structures are not allowed
100 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...Packages/Framework/TYPO3.FLOW3/Classes/Reflection/ReflectionService.php
--------------------------------------------------------------------------------
FOUND 15 ERROR(S) AFFECTING 15 LINE(S)
--------------------------------------------------------------------------------
304 | ERROR | Inline control structures are not allowed
337 | ERROR | Inline control structures are not allowed
354 | ERROR | Inline control structures are not allowed
998 | ERROR | Inline comments must be indented by one tab more then the code
| | next line.
999 | ERROR | Inline comments must be indented by one tab more then the code
| | next line.
1009 | ERROR | Inline control structures are not allowed
1010 | ERROR | Inline control structures are not allowed
1012 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
1329 | ERROR | Inline control structures are not allowed
1330 | ERROR | Inline control structures are not allowed
1331 | ERROR | Inline control structures are not allowed
1332 | ERROR | Inline control structures are not allowed
1333 | ERROR | Functions must not contain multiple empty lines in a row; found
| | 2 empty lines
1336 | ERROR | Inline control structures are not allowed
1654 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: .../TYPO3.FLOW3/Classes/Resource/Publishing/FileSystemPublishingTarget.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
120 | ERROR | Inline control structures are not allowed
277 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ....FLOW3/Classes/Resource/Publishing/PublishingConfigurationInterface.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
23 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...ment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Resource/Resource.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
135 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...OW3/Packages/Framework/TYPO3.FLOW3/Classes/Resource/ResourceManager.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
162 | ERROR | Tabs must be used to indent lines; spaces are not allowed
223 | ERROR | Functions must not contain multiple empty lines in a row; found
| | 2 empty lines
--------------------------------------------------------------------------------
FILE: ...ckages/Framework/TYPO3.FLOW3/Classes/Resource/ResourceTypeConverter.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
79 | ERROR | Space found before comma in function call
95 | ERROR | Space found before comma in function call
104 | ERROR | Space found before comma in function call
--------------------------------------------------------------------------------
FILE: ...ramework/TYPO3.FLOW3/Classes/Resource/Streams/ResourceStreamWrapper.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
29 | ERROR | Space found before semicolon; expected "$context;" but found
| | "$context ;"
87 | ERROR | Tabs must be used to indent lines; spaces are not allowed
133 | ERROR | Tabs must be used to indent lines; spaces are not allowed
--------------------------------------------------------------------------------
FILE: ...Framework/TYPO3.FLOW3/Classes/Resource/Streams/StreamWrapperAdapter.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
37 | ERROR | Space found before semicolon; expected "$context;" but found
| | "$context ;"
442 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...pment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Security/Account.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
225 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...3/Packages/Framework/TYPO3.FLOW3/Classes/Security/AccountRepository.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
72 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: .../Framework/TYPO3.FLOW3/Classes/Security/Aspect/CsrfProtectionAspect.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
105 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...TYPO3.FLOW3/Classes/Security/Aspect/PersistenceQueryRewritingAspect.php
--------------------------------------------------------------------------------
FOUND 9 ERROR(S) AND 1 WARNING(S) AFFECTING 10 LINE(S)
--------------------------------------------------------------------------------
122 | ERROR | Inline control structures are not allowed
184 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
302 | ERROR | Inline control structures are not allowed
364 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
366 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
368 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
370 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
372 | ERROR | Usage of "ELSE IF" not allowed. Use "ELSEIF" instead.
374 | WARNING | Use of eval() is discouraged
394 | ERROR | No newline character is allowed after php closing tag; expect
| | " ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...YPO3.FLOW3/Classes/Security/Aspect/PrivateResourcesPublishingAspect.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
86 | ERROR | Inline control structures are not allowed
141 | ERROR | Inline control structures are not allowed
160 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...mework/TYPO3.FLOW3/Classes/Security/Aspect/RequestDispatchingAspect.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
122 | ERROR | Tabs must be used to indent lines; spaces are not allowed
123 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...OW3/Classes/Security/Authentication/AuthenticationProviderInterface.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
29 | ERROR | Perl-style comments are not allowed. Use "// Comment." or "/*
| | comment */" instead.
--------------------------------------------------------------------------------
FILE: ...FLOW3/Classes/Security/Authentication/AuthenticationProviderManager.php
--------------------------------------------------------------------------------
FOUND 7 ERROR(S) AFFECTING 7 LINE(S)
--------------------------------------------------------------------------------
90 | ERROR | Inline control structures are not allowed
91 | ERROR | Inline control structures are not allowed
139 | ERROR | Inline control structures are not allowed
162 | ERROR | Tabs must be used to indent lines; spaces are not allowed
250 | ERROR | Inline control structures are not allowed
267 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
301 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...LOW3/Classes/Security/Authentication/AuthenticationProviderResolver.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
47 | ERROR | Inline control structures are not allowed
50 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...Classes/Security/Authentication/Controller/AuthenticationController.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
61 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...rk/TYPO3.FLOW3/Classes/Security/Authentication/EntryPoint/HttpBasic.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
36 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: .../TYPO3.FLOW3/Classes/Security/Authentication/EntryPoint/WebRedirect.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
43 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...ork/TYPO3.FLOW3/Classes/Security/Authentication/EntryPointInterface.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
47 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...PO3.FLOW3/Classes/Security/Authentication/Provider/AbstractProvider.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
50 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...OW3/Classes/Security/Authentication/Token/UsernamePasswordHttpBasic.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
41 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...PO3.FLOW3/Classes/Security/Authorization/AccessDecisionVoterManager.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
167 | ERROR | Inline control structures are not allowed
170 | ERROR | Inline control structures are not allowed
177 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...Framework/TYPO3.FLOW3/Classes/Security/Authorization/FilterFirewall.php
--------------------------------------------------------------------------------
FOUND 4 ERROR(S) AFFECTING 4 LINE(S)
--------------------------------------------------------------------------------
87 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
88 | ERROR | Inline control structures are not allowed
90 | ERROR | Inline control structures are not allowed
100 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
--------------------------------------------------------------------------------
FILE: ...work/TYPO3.FLOW3/Classes/Security/Authorization/InterceptorResolver.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
49 | ERROR | Inline control structures are not allowed
52 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: .../Framework/TYPO3.FLOW3/Classes/Security/Authorization/RequestFilter.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
69 | ERROR | Expected "if (...) {\n"; found "if(...) {\n"
--------------------------------------------------------------------------------
FILE: ...Security/Authorization/Resource/AccessRestrictionPublisherInterface.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
30 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...s/Security/Authorization/Resource/Apache2AccessRestrictionPublisher.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
42 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...ses/Security/Authorization/Resource/SecurityPublishingConfiguration.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
48 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...s/Framework/TYPO3.FLOW3/Classes/Security/Authorization/Voter/Policy.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
92 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...pment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Security/Context.php
--------------------------------------------------------------------------------
FOUND 9 ERROR(S) AFFECTING 9 LINE(S)
--------------------------------------------------------------------------------
276 | ERROR | Inline control structures are not allowed
300 | ERROR | Inline control structures are not allowed
302 | ERROR | Inline control structures are not allowed
347 | ERROR | Inline control structures are not allowed
386 | ERROR | Inline control structures are not allowed
453 | ERROR | Inline control structures are not allowed
532 | ERROR | Inline control structures are not allowed
537 | ERROR | Inline control structures are not allowed
546 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...ork/TYPO3.FLOW3/Classes/Security/Cryptography/BCryptHashingStrategy.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
35 | ERROR | String "%02d" does not require double quotes; use single quotes
| | instead
--------------------------------------------------------------------------------
FILE: ...ework/TYPO3.FLOW3/Classes/Security/Cryptography/RsaWalletServicePhp.php
--------------------------------------------------------------------------------
FOUND 8 ERROR(S) AFFECTING 8 LINE(S)
--------------------------------------------------------------------------------
138 | ERROR | Inline control structures are not allowed
169 | ERROR | Inline control structures are not allowed
173 | ERROR | Inline control structures are not allowed
187 | ERROR | Inline control structures are not allowed
205 | ERROR | Inline control structures are not allowed
224 | ERROR | Inline control structures are not allowed
239 | ERROR | Inline control structures are not allowed
330 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...ramework/TYPO3.FLOW3/Classes/Security/Policy/PolicyExpressionParser.php
--------------------------------------------------------------------------------
FOUND 7 ERROR(S) AFFECTING 7 LINE(S)
--------------------------------------------------------------------------------
39 | ERROR | Inline control structures are not allowed
40 | ERROR | Inline control structures are not allowed
55 | ERROR | Inline control structures are not allowed
94 | ERROR | Inline control structures are not allowed
115 | ERROR | Inline control structures are not allowed
120 | ERROR | Inline control structures are not allowed
128 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...ackages/Framework/TYPO3.FLOW3/Classes/Security/Policy/PolicyService.php
--------------------------------------------------------------------------------
FOUND 18 ERROR(S) AND 1 WARNING(S) AFFECTING 19 LINE(S)
--------------------------------------------------------------------------------
257 | ERROR | Inline control structures are not allowed
259 | ERROR | Inline control structures are not allowed
275 | ERROR | Inline control structures are not allowed
298 | ERROR | Inline control structures are not allowed
299 | ERROR | Inline control structures are not allowed
306 | WARNING | Use of eval() is discouraged
307 | ERROR | Inline control structures are not allowed
363 | ERROR | Inline control structures are not allowed
377 | ERROR | Tabs must be used to indent lines; spaces are not allowed
386 | ERROR | Inline control structures are not allowed
412 | ERROR | Inline control structures are not allowed
423 | ERROR | Inline control structures are not allowed
491 | ERROR | Inline control structures are not allowed
494 | ERROR | Inline control structures are not allowed
510 | ERROR | Inline control structures are not allowed
511 | ERROR | Inline control structures are not allowed
512 | ERROR | Inline control structures are not allowed
515 | ERROR | Inline control structures are not allowed
519 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...ramework/TYPO3.FLOW3/Classes/Security/RequestPattern/CsrfProtection.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
90 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: .../Packages/Framework/TYPO3.FLOW3/Classes/Security/RequestPattern/Uri.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
61 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...ent/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Session/PhpSession.php
--------------------------------------------------------------------------------
FOUND 6 ERROR(S) AFFECTING 6 LINE(S)
--------------------------------------------------------------------------------
184 | ERROR | Inline control structures are not allowed
208 | ERROR | Inline control structures are not allowed
231 | ERROR | Inline control structures are not allowed
232 | ERROR | Inline control structures are not allowed
243 | ERROR | Inline control structures are not allowed
363 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...OW3/Packages/Framework/TYPO3.FLOW3/Classes/Session/TransientSession.php
--------------------------------------------------------------------------------
FOUND 5 ERROR(S) AFFECTING 5 LINE(S)
--------------------------------------------------------------------------------
104 | ERROR | Inline control structures are not allowed
116 | ERROR | Inline control structures are not allowed
139 | ERROR | Inline control structures are not allowed
150 | ERROR | Inline control structures are not allowed
161 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: .../FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/SignalSlot/Dispatcher.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
74 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...lopment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Utility/Arrays.php
--------------------------------------------------------------------------------
FOUND 3 ERROR(S) AFFECTING 3 LINE(S)
--------------------------------------------------------------------------------
130 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
224 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
263 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
--------------------------------------------------------------------------------
FILE: ...nt/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Utility/Environment.php
--------------------------------------------------------------------------------
FOUND 6 ERROR(S) AFFECTING 6 LINE(S)
--------------------------------------------------------------------------------
259 | ERROR | Space found before comma in function call
293 | ERROR | Inline control structures are not allowed
294 | ERROR | Inline control structures are not allowed
413 | ERROR | Inline control structures are not allowed
511 | ERROR | Expected "foreach (...) {\n"; found "foreach(...) {\n"
532 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...ment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Utility/FileTypes.php
--------------------------------------------------------------------------------
FOUND 47 ERROR(S) AFFECTING 47 LINE(S)
--------------------------------------------------------------------------------
354 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'ogg'=> ". Expected "'ogg' => "
356 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'txt'=> ". Expected "'txt' => "
357 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'doc'=> ". Expected "'doc' => "
358 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'dot'=> ". Expected "'dot' => "
359 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'pdf'=> ". Expected "'pdf' => "
360 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'ps'=> ". Expected "'ps' => "
361 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'wp5'=> ". Expected "'wp5' => "
362 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'rtf'=> ". Expected "'rtf' => "
363 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'dvi'=> ". Expected "'dvi' => "
366 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'ai'=> ". Expected "'ai' => "
367 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'eps'=> ". Expected "'eps' => "
370 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'csv'=> ". Expected "'csv' => "
371 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'xls'=> ". Expected "'xls' => "
372 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'xlb'=> ". Expected "'xlb' => "
373 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'mdb'=> ". Expected "'mdb' => "
374 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'zip'=> ". Expected "'zip' => "
375 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'wk'=> ". Expected "'wk' => "
377 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'ttf'=> ". Expected "'ttf' => "
378 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'pfa'=> ". Expected "'pfa' => "
379 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'pfb'=> ". Expected "'pfb' => "
380 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'gsf'=> ". Expected "'gsf' => "
381 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'pcf'=> ". Expected "'pcf' => "
382 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'pcf.Z'=> ". Expected "'pcf.Z' => "
384 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'max'=> ". Expected "'max' => "
385 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'3ds'=> ". Expected "'3ds' => "
387 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'gtar'=> ". Expected "'gtar' => "
388 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'tgz'=> ". Expected "'tgz' => "
389 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'tar'=> ". Expected "'tar' => "
390 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'lha'=> ". Expected "'lha' => "
391 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'lzh'=> ". Expected "'lzh' => "
392 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'lzx'=> ". Expected "'lzx' => "
393 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'hqx'=> ". Expected "'hqx' => "
394 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'rpm'=> ". Expected "'rpm' => "
395 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'shar'=> ". Expected "'shar' => "
396 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'sit'=> ". Expected "'sit' => "
397 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'deb'=> ". Expected "'deb' => "
399 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'com'=> ". Expected "'com' => "
400 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'exe'=> ". Expected "'exe' => "
401 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'bat'=> ". Expected "'bat' => "
402 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'dll'=> ". Expected "'dll' => "
403 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'pl'=> ". Expected "'pl' => "
404 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'pm'=> ". Expected "'pm' => "
406 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'swf'=> ". Expected "'swf' => "
407 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'swfl'=> ". Expected "'swfl' => "
408 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'ppt'=> ". Expected "'ppt' => "
409 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'pps'=> ". Expected "'pps' => "
410 | ERROR | Whitespace must be added before the assignment operator. Found
| | "'pot'=> ". Expected "'pot' => "
--------------------------------------------------------------------------------
FILE: ...elopment/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Utility/Files.php
--------------------------------------------------------------------------------
FOUND 7 ERROR(S) AFFECTING 7 LINE(S)
--------------------------------------------------------------------------------
72 | ERROR | Inline control structures are not allowed
79 | ERROR | Whitespace must be added after the arithmetic operator. Found "
| | -$suffixLength". Expected " - $suffixLength"
162 | ERROR | Inline control structures are not allowed
175 | ERROR | Inline control structures are not allowed
178 | ERROR | Inline control structures are not allowed
200 | ERROR | Inline control structures are not allowed
284 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...t/FLOW3/Packages/Framework/TYPO3.FLOW3/Classes/Utility/TypeHandling.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
--------------------------------------------------------------------------------
33 | ERROR | Scope modifier not specified for member variable
| | "$collectionTypes"
130 | ERROR | No newline character is allowed after php closing tag; expect "
| | ?> " but found " ?>\n "
--------------------------------------------------------------------------------
FILE: ...W3/Packages/Framework/TYPO3.FLOW3/Classes/Utility/Unicode/Functions.php
--------------------------------------------------------------------------------
FOUND 10 ERROR(S) AFFECTING 8 LINE(S)
--------------------------------------------------------------------------------
52 | ERROR | Inline control structures are not allowed
55 | ERROR | Expected "if (...) {\n"; found "if (...) {\n"
56 | ERROR | The double slash comments must be on a seperate line.
56 | ERROR | Inline comments indents 30 tab(s) too much; expected indent only
| | by one tab more then the code next line.
58 | ERROR | No space found after comma in function call
59 | ERROR | The double slash comments must be on a seperate line.
59 | ERROR | Inline comments indents 27 tab(s) too much; expected indent only
| | by one tab more then the code next line.
63 | ERROR | Expected "} else {\n"; found "}\n else {\n"
132 | ERROR | Whitespace must be added before and after the assignment
| | operator. Found "$offset=0". Expected "$offset = 0"
133 | ERROR | No space found after comma in function call
--------------------------------------------------------------------------------
FILE: ...Packages/Framework/TYPO3.FLOW3/Classes/Utility/Unicode/TextIterator.php
--------------------------------------------------------------------------------
FOUND 9 ERROR(S) AFFECTING 9 LINE(S)
--------------------------------------------------------------------------------
91 | ERROR | Inline control structures are not allowed
139 | ERROR | Inline control structures are not allowed
197 | ERROR | Inline control structures are not allowed
214 | ERROR | Inline control structures are not allowed
292 | ERROR | Inline control structures are not allowed
309 | ERROR | Inline control structures are not allowed
337 | ERROR | Inline control structures are not allowed
407 | ERROR | Inline control structures are not allowed
408 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...s/Framework/TYPO3.FLOW3/Classes/Utility/Unicode/TextIteratorElement.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
51 | ERROR | Whitespace must be added before and after the assignment
| | operator. Found "$length=0". Expected "$length = 0"
51 | ERROR | Whitespace must be added before and after the assignment
| | operator. Found "$boundary=FALSE". Expected "$boundary = FALSE"
--------------------------------------------------------------------------------
FILE: ...TYPO3.FLOW3/Classes/Validation/Validator/AbstractCompositeValidator.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
61 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
FILE: ...work/TYPO3.FLOW3/Classes/Validation/Validator/EmailAddressValidator.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
124 | ERROR | Expected "if (...) {\n"; found "if(...) {\n"
--------------------------------------------------------------------------------
FILE: ...ork/TYPO3.FLOW3/Classes/Validation/Validator/GenericObjectValidator.php
--------------------------------------------------------------------------------
FOUND 0 ERROR(S) AND 1 WARNING(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
64 | WARNING | Empty return statement not required here
--------------------------------------------------------------------------------
FILE: .../Framework/TYPO3.FLOW3/Classes/Validation/Validator/StringValidator.php
--------------------------------------------------------------------------------
FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
33 | ERROR | Expected "if (...) {\n"; found "if(...) {\n"
--------------------------------------------------------------------------------
FILE: ...amework/TYPO3.FLOW3/Classes/Validation/Validator/ValidatorInterface.php
--------------------------------------------------------------------------------
FOUND 2 ERROR(S) AFFECTING 1 LINE(S)
--------------------------------------------------------------------------------
27 | ERROR | Inline comments must be indented by one tab more then the code
| | next line.
27 | ERROR | Space must be added in single line comments after the comment
| | sign (double slash).
--------------------------------------------------------------------------------
FILE: ...Packages/Framework/TYPO3.FLOW3/Classes/Validation/ValidatorResolver.php
--------------------------------------------------------------------------------
FOUND 5 ERROR(S) AFFECTING 5 LINE(S)
--------------------------------------------------------------------------------
87 | ERROR | Inline control structures are not allowed
143 | ERROR | Space found before comma in function call
233 | ERROR | Space found before comma in function call
239 | ERROR | Whitespace must be added after the assignment operator. Found "
| | =>$parsedType". Expected " => $parsedType"
257 | ERROR | Inline control structures are not allowed
--------------------------------------------------------------------------------
Time: 46 seconds, Memory: 25.75Mb