You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011121314 |
- {{ "<?php" }}
-
- namespace {{ controller_namespace.as_it }};
-
- use Luticate\Utils\LuController;
- use {{ business_namespace.as_it }}\{{ business_name.as_it }};
- use {{ dbo_namespace.as_it }}\{{ dbo_name.as_it }};
-
- class {{ controller_name.as_it }} extends LuController {
- protected function getBusiness()
- {
- return new {{ business_name.as_it }}();
- }
- }
|