Skip to content

Commit ea9642f

Browse files
committed
fix cs
1 parent 3b53427 commit ea9642f

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

config/app.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use Cake\Database\Driver\Mysql;
66
use Cake\Log\Engine\FileLog;
77
use Cake\Mailer\Transport\MailTransport;
8+
89
use function Cake\Core\env;
910

1011
return [
@@ -456,4 +457,3 @@
456457
'fixtureStrategy' => null,
457458
],
458459
];
459-

src/Application.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/**
34
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
45
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
@@ -12,6 +13,7 @@
1213
* @since 3.3.0
1314
* @license https://opensource.org/licenses/mit-license.php MIT License
1415
*/
16+
1517
namespace App;
1618

1719
use Authentication\AuthenticationService;
@@ -38,8 +40,8 @@
3840
* This defines the bootstrapping logic and middleware layers you
3941
* want to use in your application.
4042
*/
41-
class Application extends BaseApplication
42-
implements AuthenticationServiceProviderInterface,
43+
class Application extends BaseApplication implements
44+
AuthenticationServiceProviderInterface,
4345
AuthorizationServiceProviderInterface
4446
{
4547
/**

0 commit comments

Comments
 (0)