Skip to content

Commit

Permalink
NGSTACK-389: fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
pspanja committed Jan 30, 2020
1 parent b2f005d commit d70a7f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ private function extendViewConfig(&$config, string $viewPath, array $viewConfigs
return;
}

[$extendedViewType, $extendedName] = explode('/', $config['extends'] . '/');
[$extendedViewType, $extendedName] = \explode('/', $config['extends'] . '/');

if (!isset($viewConfigs[$extendedViewType][$extendedName])) {
throw new InvalidConfigurationException(
Expand Down

0 comments on commit d70a7f3

Please sign in to comment.