19 lines
282 B
PHP
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);
|
|
}
|