Skip to content

Commit ab08bf3

Browse files
committed
Add back Plugin class for backwards compatibility
1 parent 0581520 commit ab08bf3

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

src/Plugin.php

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
declare(strict_types=1);
3+
4+
/**
5+
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
6+
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
7+
*
8+
* Licensed under The MIT License
9+
* Redistributions of files must retain the above copyright notice.
10+
*
11+
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
12+
* @link https://cakephp.org CakePHP(tm) Project
13+
* @since 1.0.2
14+
* @license https://www.opensource.org/licenses/mit-license.php MIT License
15+
*/
16+
namespace Authentication;
17+
18+
/**
19+
* @deprecated 3.3.4 Use AuthenticationPlugin instead
20+
*/
21+
class Plugin extends AuthenticationPlugin
22+
{
23+
}

0 commit comments

Comments
 (0)