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.

ImagesController.php 272B

1234567891011121314
  1. <?php
  2. namespace App\Http\Controller;
  3. use Luticate\Utils\LuController;
  4. use App\Http\Business\ImagesBusiness;
  5. use App\Http\DBO\ImagesDbo;
  6. class ImagesController extends LuController {
  7. protected function getBusiness()
  8. {
  9. return new ImagesBusiness();
  10. }
  11. }