Skip to content

Commit

Permalink
Fix CS.
Browse files Browse the repository at this point in the history
  • Loading branch information
mscherer committed Jun 28, 2023
1 parent 45623fe commit 74c6104
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
<?php

use Cake\Core\Configure;
use Cake\Core\Plugin;
use CakeDto\Plugin as CakeDtoPlugin;

if (!defined('DS')) {
define('DS', DIRECTORY_SEPARATOR);
}
Expand Down Expand Up @@ -28,7 +32,7 @@
require dirname(__DIR__) . '/vendor/autoload.php';
require CORE_PATH . 'config/bootstrap.php';

Cake\Core\Configure::write('App', [
Configure::write('App', [
'namespace' => 'App',
'encoding' => 'utf-8',
'paths' => [
Expand All @@ -39,9 +43,9 @@
],
]);

Cake\Core\Configure::write('CakeDto', [
Configure::write('CakeDto', [
]);

Cake\Core\Configure::write('debug', true);
Configure::write('debug', true);

Cake\Core\Plugin::getCollection()->add(new CakeDto\Plugin());
Plugin::getCollection()->add(new CakeDtoPlugin());

0 comments on commit 74c6104

Please sign in to comment.