1 | <?php |
||
25 | class CreateController extends Base |
||
26 | { |
||
27 | |||
28 | /** |
||
29 | * @readwrite |
||
30 | * @var string |
||
31 | */ |
||
32 | protected $modelName; |
||
33 | |||
34 | /** |
||
35 | * @readwrite |
||
36 | * @var string |
||
37 | */ |
||
38 | protected $path; |
||
39 | |||
40 | /** |
||
41 | * @readwrite |
||
42 | * @var bool |
||
43 | */ |
||
44 | protected $scaffold = false; |
||
45 | |||
46 | /** |
||
47 | * @readwrite |
||
48 | * @var string |
||
49 | */ |
||
50 | protected $output = 'Controller'; |
||
51 | |||
52 | /** |
||
53 | * Create Controller command |
||
54 | * |
||
55 | * @param string $modelName |
||
56 | * @param array|object $options |
||
57 | */ |
||
58 | public function __construct($modelName, $options = []) |
||
63 | |||
64 | |||
65 | } |