Skip to content

Commit

Permalink
Code Style fixes for administrator/components/com_config/
Browse files Browse the repository at this point in the history
- Line exceeds 150 characters
- No blank line found after control structure
- Expected "boolean" but found "bool" for function return type
- Whitespace found at end of line
- Blank line found at end of control structure
  • Loading branch information
photodude committed Aug 6, 2016
1 parent 59ef2fb commit 402be63
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
8 changes: 5 additions & 3 deletions administrator/components/com_config/model/field/filters.php
Expand Up @@ -51,14 +51,16 @@ protected function getInput()
$html[] = ' <span class="acl-action">' . JText::_('JGLOBAL_FILTER_GROUPS_LABEL') . '</span>';
$html[] = ' </th>';
$html[] = ' <th>';
$html[] = ' <span class="acl-action" title="' . JText::_('JGLOBAL_FILTER_TYPE_LABEL') . '">' . JText::_('JGLOBAL_FILTER_TYPE_LABEL') . '</span>';
$html[] = ' <span class="acl-action" title="' . JText::_('JGLOBAL_FILTER_TYPE_LABEL') . '">'
. JText::_('JGLOBAL_FILTER_TYPE_LABEL') . '</span>';
$html[] = ' </th>';
$html[] = ' <th>';
$html[] = ' <span class="acl-action" title="' . JText::_('JGLOBAL_FILTER_TAGS_LABEL') . '">' . JText::_('JGLOBAL_FILTER_TAGS_LABEL') . '</span>';
$html[] = ' <span class="acl-action" title="' . JText::_('JGLOBAL_FILTER_TAGS_LABEL') . '">'
. JText::_('JGLOBAL_FILTER_TAGS_LABEL') . '</span>';
$html[] = ' </th>';
$html[] = ' <th>';
$html[] = ' <span class="acl-action" title="' . JText::_('JGLOBAL_FILTER_ATTRIBUTES_LABEL') . '">'
. JText::_('JGLOBAL_FILTER_ATTRIBUTES_LABEL') . '</span>';
. JText::_('JGLOBAL_FILTER_ATTRIBUTES_LABEL') . '</span>';
$html[] = ' </th>';
$html[] = ' </tr>';
$html[] = ' </thead>';
Expand Down
Expand Up @@ -53,6 +53,7 @@ public function render()
{
$form->bind($data);
}

// Get the params for com_users.
$usersParams = JComponentHelper::getParams('com_users');

Expand Down

0 comments on commit 402be63

Please sign in to comment.