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