Fixes for build without config
This commit is contained in:
parent
a5aabdce2d
commit
86478a1264
56 changed files with 376 additions and 85 deletions
|
|
@ -18,11 +18,19 @@ class ExamplePluginFull extends Plugin {
|
|||
/**
|
||||
* @var array
|
||||
*/
|
||||
public $Options;
|
||||
public $options;
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public static function pluginName()
|
||||
{
|
||||
return 'example_plugin_full';
|
||||
}
|
||||
|
||||
public function __construct(Builder $builder, Build $build, array $options = [])
|
||||
{
|
||||
$this->Options = $options;
|
||||
$this->options = $options;
|
||||
}
|
||||
|
||||
public function execute()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue