Skip to content

Commit

Permalink
add missing App::uses()
Browse files Browse the repository at this point in the history
  • Loading branch information
ceeram committed Jan 12, 2012
1 parent 9c652e6 commit eaf6f0e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
* Test suite app/Model/Datasource/Session session handler
*
*/

App::uses('CakeSessionHandlerInterface', 'Model/Datasource/Session');

class TestAppLibSession implements CakeSessionHandlerInterface {

public function open() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
/**
* Test suite plugin session handler
*/

App::uses('CakeSessionHandlerInterface', 'Model/Datasource/Session');

class TestPluginSession implements CakeSessionHandlerInterface {

public function open() {
Expand Down

0 comments on commit eaf6f0e

Please sign in to comment.