Total Complexity | 4 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class BlurCommand extends AbstractCommand |
||
13 | { |
||
14 | /** |
||
15 | * BlurCommand constructor. |
||
16 | * @param LevelCommandOption $options |
||
17 | */ |
||
18 | public function __construct(LevelCommandOption $options) |
||
19 | { |
||
20 | parent::__construct($options); |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @param Image $image |
||
25 | * @return Image |
||
26 | */ |
||
27 | public function execute(Image $image) |
||
36 | } |
||
37 | } |
||
38 |