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.

business.php.twig 334B

1234567891011121314
  1. {{ "<?php" }}
  2. namespace App\Http\Business;
  3. use Luticate\Utils\LuBusiness;
  4. use App\Http\DataAccess\{{ data_access_name.as_it }};
  5. use App\Http\DBO\{{ dbo_name.as_it }};
  6. class {{ business_name.as_it }} extends LuBusiness {
  7. public function __construct()
  8. {
  9. $this->dataAccess = new {{ data_access_name.as_it }}();
  10. }
  11. }