1 | <?php |
||
19 | class CreateBlogCommand implements CommandInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $name; |
||
25 | |||
26 | /** |
||
27 | * CreateBlogCommand constructor. |
||
28 | * |
||
29 | * @param string $name |
||
30 | */ |
||
31 | public function __construct($name) |
||
35 | |||
36 | /** |
||
37 | * @return string |
||
38 | */ |
||
39 | public function name() |
||
43 | |||
44 | /** |
||
45 | * @param string $name |
||
46 | */ |
||
47 | public function setName($name) |
||
51 | } |
||
52 |