Skip to content

Commit

Permalink
no-task add plugin template
Browse files Browse the repository at this point in the history
  • Loading branch information
nxsschoenfeld committed Aug 22, 2024
1 parent 69e31ac commit 05f725a
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php
declare(strict_types = 1);
namespace {{ organization }}\Zed\{{ module }}\Communication\Plugin;
use Spryker\Zed\Kernel\Communication\AbstractPlugin;
use Spryker\Zed\StateMachine\Dependency\Plugin\CommandPluginInterface;
/**
* @method \{{ organization }}\Zed\{{ module }}\Communication\{{ module }}CommunicationFactory getFactory()
* @method \{{ organization }}\Zed\{{ module }}\Business\{{ module }}FacadeInterface getFacade()
*/
class {{ className }}Plugin extends AbstractPlugin implements CommandPluginInterface
{
/**
* @return bool
*/
public function run(): bool
{
// TODO: Implement run() method.
return true;
}
}

0 comments on commit 05f725a

Please sign in to comment.