c64242f6286586a32598df940f477b724bbd8eb3
[yaffs-website] / vendor / drush / drush / src / Command / ServiceCommandlist.php
1 <?php
2 namespace Drush\Command;
3
4 use Drush\Log\LogLevel;
5
6 /**
7  * Keep a list of all of the service commands that we can find when the
8  * Drupal Kernel is booted.
9  */
10 class ServiceCommandlist
11 {
12     protected $commandList = [];
13
14     public function addCommandReference($command)
15     {
16         $this->commandList[] = $command;
17     }
18
19     public function getCommandList()
20     {
21         return $this->commandList;
22     }
23 }