Skip to content

Commit

Permalink
Moved location of AbstractController and AbstractView to recess.frame…
Browse files Browse the repository at this point in the history
…work
  • Loading branch information
KrisJordan committed Apr 13, 2009
1 parent 9025e41 commit dc8461a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions recess/recess/framework/controllers/Controller.class.php
@@ -1,10 +1,10 @@
<?php
Library::import('recess.framework.controllers.AbstractController');
Library::import('recess.framework.AbstractController');

Library::import('recess.lang.Annotation', true);
Library::import('recess.framework.controllers.annotations.ViewAnnotation', true);
Library::import('recess.framework.controllers.annotations.RouteAnnotation', true);
Library::import('recess.framework.controllers.annotations.RoutesPrefixAnnotation', true);
Library::import('recess.lang.Annotation');
Library::import('recess.framework.controllers.annotations.ViewAnnotation');
Library::import('recess.framework.controllers.annotations.RouteAnnotation');
Library::import('recess.framework.controllers.annotations.RoutesPrefixAnnotation');

/**
* The controller is responsible for interpretting a preprocessed Request,
Expand Down
2 changes: 1 addition & 1 deletion recess/recess/framework/views/NativeView.class.php
@@ -1,5 +1,5 @@
<?php
Library::import('recess.framework.views.AbstractView');
Library::import('recess.framework.AbstractView');

class NativeView extends AbstractView {
/**
Expand Down

0 comments on commit dc8461a

Please sign in to comment.