Version 1
[yaffs-website] / vendor / drupal / console / src / Annotations / DrupalCommand.php
1 <?php
2 /**
3  * @file
4  * Contains \Drupal\Console\Annotations\DrupalCommand.
5  */
6
7 namespace Drupal\Console\Annotations;
8
9 use Doctrine\Common\Annotations\Annotation;
10
11 /**
12  * @Annotation
13  * @Target("CLASS")
14  */
15
16 class DrupalCommand
17 {
18     /**
19      * @var string
20      */
21     public $extension;
22
23     /**
24      * @var string
25      */
26     public $extensionType;
27
28     /**
29      * @var array
30      */
31     public $dependencies;
32 }