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.

28 lines
426 B

3 years ago
  1. <?php
  2. namespace App\Flight;
  3. use Flight;
  4. /**
  5. * abstract FlightAbstract get instance of flight engine
  6. *
  7. *
  8. * @author Björn Hase
  9. * @license http://opensource.org/licenses/MIT The MIT License
  10. *
  11. */
  12. abstract class FlightAbstract
  13. {
  14. /** object of flight */
  15. protected $app;
  16. /**
  17. * getting object of flight
  18. *
  19. */
  20. public function __construct()
  21. {
  22. $this->app = Flight::app();
  23. }
  24. }