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.

controller.php.twig 363B

1234567891011121314
  1. {{ "<?php" }}
  2. namespace {{ controller_namespace.as_it }};
  3. use Luticate\Utils\LuController;
  4. use {{ business_namespace.as_it }}\{{ business_name.as_it }};
  5. use {{ dbo_namespace.as_it }}\{{ dbo_name.as_it }};
  6. class {{ controller_name.as_it }} extends LuController {
  7. protected function getBusiness()
  8. {
  9. return new {{ business_name.as_it }}();
  10. }
  11. }