Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / consolidation / annotated-command / tests / src / ExampleCommandInfoAlterer.php
diff --git a/vendor/consolidation/annotated-command/tests/src/ExampleCommandInfoAlterer.php b/vendor/consolidation/annotated-command/tests/src/ExampleCommandInfoAlterer.php
deleted file mode 100644 (file)
index 824122d..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
-namespace Consolidation\TestUtils;
-
-use Consolidation\AnnotatedCommand\Parser\CommandInfo;
-use Consolidation\AnnotatedCommand\CommandInfoAltererInterface;
-
-class ExampleCommandInfoAlterer implements CommandInfoAltererInterface
-{
-    public function alterCommandInfo(CommandInfo $commandInfo, $commandFileInstance)
-    {
-        if ($commandInfo->hasAnnotation('arbitrary')) {
-            $commandInfo->addAnnotation('dynamic', "This annotation was dynamically added by ExampleCommandInfoAlterer");
-        }
-    }
-}