Yaffs site version 1.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 class DrupalCommand
16 {
17     /**
18      * @var string
19      */
20     public $extension;
21
22     /**
23      * @var string
24      */
25     public $extensionType;
26
27     /**
28      * @var array
29      */
30     public $dependencies;
31 }