-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathAuthenticationPlugin.php
More file actions
39 lines (34 loc) · 955 Bytes
/
AuthenticationPlugin.php
File metadata and controls
39 lines (34 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 1.0.2
* @license https://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Authentication;
use Cake\Core\BasePlugin;
/**
* Plugin class for CakePHP.
*/
class AuthenticationPlugin extends BasePlugin
{
/**
* Do bootstrapping or not
*/
protected bool $bootstrapEnabled = false;
/**
* Load routes or not
*/
protected bool $routesEnabled = false;
/**
* Console middleware
*/
protected bool $consoleEnabled = false;
}