Yaffs site version 1.1
[yaffs-website] / vendor / drupal / console / src / Command / Shared / FeatureTrait.php
index 378f4c0a6fdf932d09685747a2bc865b4a1ee450..32ab9a8e21131d084a7aa0c7f198a0861f8534a8 100644 (file)
@@ -138,14 +138,13 @@ trait FeatureTrait
             }
         }
 
-        // Process only missing or overriden features
+        // Process only missing or overridden features
         $components = $overridden;
 
         if (empty($components)) {
             $io->warning(
                 sprintf(
-                    $this->trans('commands.features.import.messages.nothing'),
-                    $components
+                    $this->trans('commands.features.import.messages.nothing')
                 )
             );
 
@@ -168,7 +167,6 @@ trait FeatureTrait
         foreach ($components as $component) {
             foreach ($component as $feature) {
                 if (!isset($config[$feature])) {
-
                     //Import missing component.
                     $item = $manager->getConfigType($feature);
                     $type = ConfigurationItem::fromConfigStringToConfigType($item['type']);