Task #26626
closedEach PHP statement must be on a line by itself
100%
Description
There are several places where two or more statements are in one line
if (condition) do something
instead
if (condition) { do something }
or just to semicolons at the end of a line
$foo = 42;;
Updated by Mr. Hudson over 13 years ago
Patch set 1 of change I9e587751676fee8db27226c751483c1070de935d has been pushed to the review server.
It is available at http://review.typo3.org/1932
Updated by Mr. Hudson over 13 years ago
Patch set 2 of change I9e587751676fee8db27226c751483c1070de935d has been pushed to the review server.
It is available at http://review.typo3.org/1932
Updated by Mr. Hudson over 13 years ago
Patch set 3 of change I9e587751676fee8db27226c751483c1070de935d has been pushed to the review server.
It is available at http://review.typo3.org/1932
Updated by Mr. Hudson over 13 years ago
Patch set 4 of change I9e587751676fee8db27226c751483c1070de935d has been pushed to the review server.
It is available at http://review.typo3.org/1932
Updated by Stefano Kowalke over 13 years ago
- Status changed from New to Resolved
- % Done changed from 0 to 100
Applied in changeset 218a48ef59c671e3b27e74e88c52c4737f280062.
Updated by Xavier Perseguers over 12 years ago
- Status changed from Resolved to Closed