Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Oct 16, 2023
1 parent 508f9ef commit 3b456ea
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 34 deletions.
50 changes: 25 additions & 25 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion config/app_custom.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
],
'404' => [
//'className' => 'File',
'className' => 'DatabaseLog.Database',
'className' => 'DatabaseLog.Database',
'file' => '404',
'levels' => ['error'],
'scopes' => ['404'],
Expand Down
1 change: 0 additions & 1 deletion tests/TestCase/Controller/ContactControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace App\Test\TestCase\Controller;

use Cake\Core\Configure;
use Cake\ORM\TableRegistry;
use Shim\TestSuite\IntegrationTestCase;

/**
Expand Down
1 change: 0 additions & 1 deletion tests/TestCase/Controller/ExportControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace App\Test\TestCase\Controller;

use Cake\ORM\TableRegistry;
use Shim\TestSuite\IntegrationTestCase;

/**
Expand Down
3 changes: 1 addition & 2 deletions tests/TestCase/Controller/MiscControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace App\Test\TestCase\Controller;

use Cake\ORM\TableRegistry;
use Shim\TestSuite\IntegrationTestCase;

/**
Expand Down Expand Up @@ -44,7 +43,7 @@ public function testIndex() {
* @return void
*/
public function testConvertText() {
$this->disableErrorHandlerMiddleware();
$this->disableErrorHandlerMiddleware();

$this->get(['controller' => 'Misc', 'action' => 'convertText']);

Expand Down
1 change: 0 additions & 1 deletion tests/TestCase/Controller/OverviewControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace App\Test\TestCase\Controller;

use Cake\ORM\TableRegistry;
use Shim\TestSuite\IntegrationTestCase;

/**
Expand Down
1 change: 0 additions & 1 deletion tests/TestCase/Controller/PagesControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace App\Test\TestCase\Controller;

use Cake\ORM\TableRegistry;
use Shim\TestSuite\IntegrationTestCase;

/**
Expand Down
3 changes: 1 addition & 2 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
use Cake\Routing\Route\DashedRoute;
use Cake\Routing\Router;
use Shim\Filesystem\Folder;
use Migrations\TestSuite\Migrator;

require dirname(__DIR__) . '/vendor/autoload.php';
require dirname(__DIR__) . '/config/bootstrap.php';
Expand Down Expand Up @@ -54,7 +53,7 @@
//'username' => getenv('db_username'),
//'password' => getenv('db_password'),
'timezone' => 'UTC',
'encoding' => 'utf8',
'encoding' => 'utf8',
'quoteIdentifiers' => true,
'cacheMetadata' => true,
]);
Expand Down

0 comments on commit 3b456ea

Please sign in to comment.