first commit
This commit is contained in:
24
bundles/KupShop/DropshipBundle/TransferInterface.php
Normal file
24
bundles/KupShop/DropshipBundle/TransferInterface.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace KupShop\DropshipBundle;
|
||||
|
||||
interface TransferInterface
|
||||
{
|
||||
public static function getType(): string;
|
||||
|
||||
public static function getName(): string;
|
||||
|
||||
public function isRunnable(): bool;
|
||||
|
||||
public function setup(array $dropshipment): void;
|
||||
|
||||
public function process(): void;
|
||||
|
||||
public function in(array $config): void;
|
||||
|
||||
public function out(array $config): void;
|
||||
|
||||
public function prepareConfigurationData(array $data): array;
|
||||
|
||||
public function getConfigurationVariables(): array;
|
||||
}
|
||||
Reference in New Issue
Block a user