Skip to content

Commit

Permalink
Add Plugin class
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Jul 7, 2020
1 parent 7f6a481 commit b72c530
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions src/Plugin.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?php
declare(strict_types=1);

namespace Muffin\Orderly;

use Cake\Core\BasePlugin;

class Plugin extends BasePlugin
{
/**
* The name of this plugin
*
* @var string
*/
protected $name = 'Orderly';

/**
* Do bootstrapping or not
*
* @var bool
*/
protected $bootstrapEnabled = false;

/**
* Load routes or not
*
* @var bool
*/
protected $routesEnabled = false;

/**
* Console middleware
*
* @var bool
*/
protected $consoleEnabled = false;
}

0 comments on commit b72c530

Please sign in to comment.