| 1 | <?php  | 
            ||
| 5 | class Configuration implements ConfigurationInterface  | 
            ||
| 6 | { | 
            ||
| 7 | /**  | 
            ||
| 8 | * @var string  | 
            ||
| 9 | */  | 
            ||
| 10 | private $name;  | 
            ||
| 11 | |||
| 12 | /**  | 
            ||
| 13 | * @var bool  | 
            ||
| 14 | */  | 
            ||
| 15 | private $create;  | 
            ||
| 16 | |||
| 17 | /**  | 
            ||
| 18 | * @var string[]  | 
            ||
| 19 | */  | 
            ||
| 20 | private $targets;  | 
            ||
| 21 | |||
| 22 | /**  | 
            ||
| 23 |      * {@inheritdoc} | 
            ||
| 24 | */  | 
            ||
| 25 | public function setName($name)  | 
            ||
| 29 | |||
| 30 | /**  | 
            ||
| 31 |      * {@inheritdoc} | 
            ||
| 32 | */  | 
            ||
| 33 | public function getName()  | 
            ||
| 37 | |||
| 38 | /**  | 
            ||
| 39 |      * {@inheritdoc} | 
            ||
| 40 | */  | 
            ||
| 41 | public function setTargets(array $targets)  | 
            ||
| 45 | |||
| 46 | /**  | 
            ||
| 47 |      * {@inheritdoc} | 
            ||
| 48 | */  | 
            ||
| 49 | public function getTargets()  | 
            ||
| 53 | |||
| 54 | /**  | 
            ||
| 55 | * @return boolean  | 
            ||
| 56 | */  | 
            ||
| 57 | public function getCreate()  | 
            ||
| 61 | |||
| 62 | /**  | 
            ||
| 63 | * @param boolean $create  | 
            ||
| 64 | */  | 
            ||
| 65 | public function setCreate($create)  | 
            ||
| 69 | }  | 
            ||
| 70 |