Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into cake4
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Dec 30, 2019
2 parents 4a82ff6 + ef5ba4c commit 551e48f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@
]);
Cake\Core\Configure::write('debug', true);

class_alias(TestApp\Controller\AppController::class, 'App\Controller\AppController');
class_alias(Cake\View\View::class, 'App\View\AppView');

class_alias(TestApp\Model\Table\UsersTable::class, 'App\Model\Table\UsersTable');
class_alias(TestApp\Model\Entity\User::class, 'App\Model\Entity\User');

mb_internal_encoding('UTF-8');

class_alias(TestApp\Application::class, 'App\Application');
Expand Down
2 changes: 1 addition & 1 deletion tests/test_app/src/Controller/AppController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace TestApp\Controller;

use Tools\Controller\Controller;
use Cake\Controller\Controller;

class AppController extends Controller {
}

0 comments on commit 551e48f

Please sign in to comment.