vd/vendor/dipper/sms/src/Contracts/StrategyInterface.php
2018-12-10 18:54:06 +08:00

19 lines
282 B
PHP

<?php
namespace Dipper\Sms\Contracts;
/**
* Interface StrategyInterface.
*/
interface StrategyInterface
{
/**
* Apply the strategy and return result.
*
* @param array $gateways
*
* @return array
*/
public function apply(array $gateways);
}