diff options
author | Alex Pott <alex.a.pott@googlemail.com> | 2016-04-29 12:02:20 +0100 |
---|---|---|
committer | Alex Pott <alex.a.pott@googlemail.com> | 2016-04-29 12:02:20 +0100 |
commit | 6098437ef5529d190c2997a1b6896af708377001 (patch) | |
tree | 0dd536acb33ff2ca36640ebc1946678f412e8fdc /core/modules/breakpoint | |
parent | 5c386edc35167329ca1db830a2e3c83ff8258526 (diff) | |
download | drupal-6098437ef5529d190c2997a1b6896af708377001.tar.gz drupal-6098437ef5529d190c2997a1b6896af708377001.zip |
Issue #2572793 by attiks, andypost: Fix 'Drupal.WhiteSpace.OperatorSpacing' coding standard
Diffstat (limited to 'core/modules/breakpoint')
-rw-r--r-- | core/modules/breakpoint/src/BreakpointManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modules/breakpoint/src/BreakpointManager.php b/core/modules/breakpoint/src/BreakpointManager.php index 1a70fe75768..693ffa9b1ed 100644 --- a/core/modules/breakpoint/src/BreakpointManager.php +++ b/core/modules/breakpoint/src/BreakpointManager.php @@ -195,7 +195,7 @@ class BreakpointManager extends DefaultPluginManager implements BreakpointManage // Get the labels. This is not cacheable due to translation. $group_labels = array(); foreach ($groups as $group) { - $group_labels[$group] = $this->getGroupLabel($group); + $group_labels[$group] = $this->getGroupLabel($group); } asort($group_labels); return $group_labels; |