for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MIT License
* Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
*/
namespace SprykerEco\Zed\Minubo\Communication\Plugin;
use Spryker\Zed\Kernel\Communication\AbstractPlugin;
use SprykerEco\Zed\Minubo\Dependency\Plugin\MinuboExportPluginInterface;
* @method \SprykerEco\Zed\Minubo\MinuboConfig getConfig()
* @method \SprykerEco\Zed\Minubo\Communication\MinuboCommunicationFactory getFactory()
* @method \SprykerEco\Zed\Minubo\Business\MinuboFacadeInterface getFacade()
class MinuboOrderExportPlugin extends AbstractPlugin implements MinuboExportPluginInterface
{
* @return void
public function exportData(): void
$this->getFacade()
->exportOrderData();
}