CLEANUP: Keep line short

This commit is contained in:
Daniel Siepmann 2016-12-13 17:19:02 +01:00
parent 1e75661395
commit 99fbb28b9d
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -197,7 +197,10 @@ class TcaTableService
public function getColumnConfig($columnName)
{
if (!isset($this->tca['columns'][$columnName])) {
throw new InvalidArgumentException('Column does not exist.', InvalidArgumentException::COLUMN_DOES_NOT_EXIST);
throw new InvalidArgumentException(
'Column does not exist.',
InvalidArgumentException::COLUMN_DOES_NOT_EXIST
);
}
return $this->tca['columns'][$columnName]['config'];