1 | <?php |
||
10 | class CreateGlobalCommand extends CreateCommand |
||
11 | { |
||
12 | /** |
||
13 | * @var ContentTypeInterface |
||
14 | */ |
||
15 | protected $contentType; |
||
16 | |||
17 | /** |
||
18 | * @see CreateAction::createTemplate() |
||
19 | */ |
||
20 | 2 | protected function createTemplate($templateClass) |
|
28 | |||
29 | /** |
||
30 | * Define action content type. |
||
31 | * |
||
32 | * @param ContentTypeInterface $contentType |
||
33 | * |
||
34 | * @return self |
||
35 | */ |
||
36 | 2 | public function setContentType(ContentTypeInterface $contentType) |
|
42 | } |
||
43 |