mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-22 18:16:11 +01:00
CLEANUP: Keep line short
This commit is contained in:
parent
1e75661395
commit
99fbb28b9d
1 changed files with 4 additions and 1 deletions
|
@ -197,7 +197,10 @@ class TcaTableService
|
||||||
public function getColumnConfig($columnName)
|
public function getColumnConfig($columnName)
|
||||||
{
|
{
|
||||||
if (!isset($this->tca['columns'][$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'];
|
return $this->tca['columns'][$columnName]['config'];
|
||||||
|
|
Loading…
Reference in a new issue