Skip to content

Commit

Permalink
Adding LogTrait back to classes that used to extend Cake\Core\Object.
Browse files Browse the repository at this point in the history
  • Loading branch information
renan committed Apr 17, 2014
1 parent 99205e4 commit a1f8bad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Console/Shell.php
Expand Up @@ -18,6 +18,7 @@
use Cake\Core\App;
use Cake\Core\Configure;
use Cake\Core\Plugin;
use Cake\Log\LogTrait;
use Cake\Model\ModelAwareTrait;
use Cake\Utility\ConventionsTrait;
use Cake\Utility\File;
Expand All @@ -32,6 +33,7 @@
*/
class Shell {

use LogTrait;
use MergeVariablesTrait;
use ModelAwareTrait;

Expand Down
2 changes: 2 additions & 0 deletions src/Controller/Controller.php
Expand Up @@ -21,6 +21,7 @@
use Cake\Event\Event;
use Cake\Event\EventListener;
use Cake\Event\EventManager;
use Cake\Log\LogTrait;
use Cake\Model\ModelAwareTrait;
use Cake\Network\Request;
use Cake\Network\Response;
Expand Down Expand Up @@ -79,6 +80,7 @@
class Controller implements EventListener {

use CellTrait;
use LogTrait;
use MergeVariablesTrait;
use ModelAwareTrait;
use RequestActionTrait;
Expand Down

0 comments on commit a1f8bad

Please sign in to comment.