diff options
author | emkael <emkael@tlen.pl> | 2016-03-16 23:19:59 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-03-16 23:20:19 +0100 |
commit | c4c6d266817907c7587753ee9115a77e17f4cf4d (patch) | |
tree | 3445699b179c119318aee4c35602f62f86d17d8e | |
parent | 13d445accd893adcba94f4a2fb74e5649d6c8595 (diff) |
* sorting imports
-rw-r--r-- | app/php/facades/EventFacade.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/php/facades/EventFacade.php b/app/php/facades/EventFacade.php index be84dfd..909ca2a 100644 --- a/app/php/facades/EventFacade.php +++ b/app/php/facades/EventFacade.php @@ -1,9 +1,9 @@ <?php Prado::using('Application.facades.Facade'); -Prado::using('Application.user.DbUser'); -Prado::using('Application.model.Calendar'); Prado::using('Application.dto.EventDTO'); +Prado::using('Application.model.Calendar'); +Prado::using('Application.user.DbUser'); class EventFacade extends Facade { |