TASK: Break line exceeding max line length

This commit is contained in:
Daniel Siepmann 2017-08-10 09:05:20 +02:00
parent 830fc8a154
commit 416e49026e
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -275,7 +275,9 @@ class TcaTableService
foreach ($rootline as $pageInRootLine) { foreach ($rootline as $pageInRootLine) {
// Check configured black list if present. // Check configured black list if present.
if ($this->isBlackListedRootLineConfigured() && in_array($pageInRootLine['uid'], $this->getBlackListedRootLine())) { if ($this->isBlackListedRootLineConfigured()
&& in_array($pageInRootLine['uid'], $this->getBlackListedRootLine())
) {
return true; return true;
} }
if ($pageInRootLine['extendToSubpages'] && ( if ($pageInRootLine['extendToSubpages'] && (