Skip to content
This repository was archived by the owner on Nov 16, 2022. It is now read-only.

Commit 3f64092

Browse files
committed
Plugin class for proffer using cake3.6 and Application addPlugin
1 parent c9013b4 commit 3f64092

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

src/Plugin.php

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?php
2+
3+
/**
4+
* @category Proffer
5+
* @package Plugin.php
6+
*
7+
* @author Michel Peters <info@isemantics.nl>
8+
* @when 11/06/18
9+
*
10+
*/
11+
12+
namespace Proffer;
13+
14+
use Cake\Core\BasePlugin;
15+
use Cake\Core\Configure;
16+
17+
/**
18+
* Default Plugin class
19+
*/
20+
class Plugin extends BasePlugin
21+
{
22+
/**
23+
* Initialize plugin
24+
*
25+
* @return void
26+
*/
27+
public function initialize()
28+
{
29+
}
30+
}

0 commit comments

Comments
 (0)