Skip to content

Commit

Permalink
Update for changes in CakePHP 2.9.
Browse files Browse the repository at this point in the history
Object needs to be explicitly imported now.

Refs #43
  • Loading branch information
markstory committed Sep 21, 2016
1 parent f136d97 commit 90bcfcf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ language: php

php:
- 5.3
- 5.4
- 5.6
- 7.0

env:
- CAKE_VERSION=master
- CAKE_VERSION=2.4
- CAKE_VERSION=2.x

before_script:
- sh -c "mysql -e 'CREATE DATABASE cakephp_test;'"
Expand Down
2 changes: 1 addition & 1 deletion Console/Command/AclExtrasShell.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* @author Mark Story <mark@mark-story.com>
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/

App::uses('Shell', 'Console');
App::uses('AclExtras', 'AclExtras.Lib');

/**
Expand Down
1 change: 1 addition & 0 deletions Lib/AclExtras.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
App::uses('AclComponent', 'Controller/Component');
App::uses('DbAcl', 'Model');
App::uses('Shell', 'Console');
App::uses('Object', 'Core');

/**
* Shell for ACO extras
Expand Down

0 comments on commit 90bcfcf

Please sign in to comment.