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.

SensorsController.php 276B

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