Skip to content

Commit

Permalink
feat: Create Plugin class
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez authored Nov 30, 2019
1 parent 85d301e commit a124770
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/Plugin.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php
namespace CrudView;
use Cake\Core\BasePlugin;

/**
* Plugin class for CrudView
*/
class Plugin extends BasePlugin
{
/**
* Plugin name.
*
* @var string
*/
protected $name = 'CrudView';
}

1 comment on commit a124770

@jippi
Copy link
Member

@jippi jippi commented on a124770 Nov 30, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@josegonzalez you broke CI :)

Please sign in to comment.