More updates to stop using dev or alpha or beta versions.
[yaffs-website] / vendor / drush / drush / tests / resources / global-includes / FoobazCommands.php
1 <?php
2 namespace Drush;
3
4 use Consolidation\OutputFormatters\StructuredData\RowsOfFields;
5
6 /**
7  * Drush will also find global commandfiles that are immediately
8  * inside the location specified via --include.
9  */
10 class FoobazCommands
11 {
12     /**
13      * Do nearly nothing.
14      *
15      * @command foobaz
16      */
17     public function foobaz()
18     {
19         return 'bar';
20     }
21 }