Upgraded drupal core with security updates
[yaffs-website] / vendor / drush / drush / tests / resources / global-includes / Commands / FoobarCommands.php
1 <?php
2 namespace Drush\Commands;
3
4 use Consolidation\OutputFormatters\StructuredData\RowsOfFields;
5
6 /**
7  * For commands that are 'global', Drush expects to find them inside
8  * the 'Commands' folder of a location specified via --include.
9  */
10 class FoobarCommands
11 {
12     /**
13      * Do nearly nothing.
14      *
15      * @command foobar
16      */
17     public function foobar()
18     {
19         return 'baz';
20     }
21 }