1 | <?php |
||
14 | class ProcessMarkdownTemplatesTask extends Task |
||
15 | { |
||
16 | use DocsGeneratorTrait; |
||
17 | |||
18 | protected $headerMarkdownContent; |
||
19 | |||
20 | const TEMPLATE_PATH = 'Containers/Documentation/ApiDocJs/shared/'; |
||
21 | const OUTPUT_PATH = 'api-markdowns/'; |
||
22 | |||
23 | /** |
||
24 | * Read the markdown header template and fill it with some real data from the .env file. |
||
25 | */ |
||
26 | public function run() |
||
41 | |||
42 | } |
||
43 |