Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / consolidation / robo / src / Task / Bower / Update.php
1 <?php
2 namespace Robo\Task\Bower;
3
4 /**
5  * Bower Update
6  *
7  * ``` php
8  * <?php
9  * // simple execution
10  * $this->taskBowerUpdate->run();
11  *
12  * // prefer dist with custom path
13  * $this->taskBowerUpdate('path/to/my/bower')
14  *      ->noDev()
15  *      ->run();
16  * ?>
17  * ```
18  */
19 class Update extends Base
20 {
21     /**
22      * {@inheritdoc}
23      */
24     protected $action = 'update';
25
26     /**
27      * {@inheritdoc}
28      */
29     public function run()
30     {
31         $this->printTaskInfo('Update Bower packages: {arguments}', ['arguments' => $this->arguments]);
32         return $this->executeCommand($this->getCommand());
33     }
34 }