Skip to content

Commit

Permalink
Fix CS for easier 3.x/4.x comparison/merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Nov 19, 2019
1 parent 2dea99e commit e77b155
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion App.php
Expand Up @@ -128,7 +128,7 @@ public static function shortName($class, $type, $suffix = '')

$nonPluginNamespaces = [
'Cake',
str_replace('\\', '/', Configure::read('App.namespace'))
str_replace('\\', '/', Configure::read('App.namespace')),
];
if (in_array($pluginName, $nonPluginNamespaces)) {
return $name;
Expand Down
2 changes: 1 addition & 1 deletion Configure.php
Expand Up @@ -38,7 +38,7 @@ class Configure
* @var array
*/
protected static $_values = [
'debug' => false
'debug' => false,
];

/**
Expand Down
2 changes: 1 addition & 1 deletion Plugin.php
Expand Up @@ -133,7 +133,7 @@ public static function load($plugin, array $config = [])
'console' => true,
'classBase' => 'src',
'ignoreMissing' => false,
'name' => $plugin
'name' => $plugin,
];

if (!isset($config['path'])) {
Expand Down

0 comments on commit e77b155

Please sign in to comment.