<?php
/**
* Copyright © 2016 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Payment\Model\Method;
/**
* Interface SpecificationInterface
*/
interface SpecificationInterface
{
/**
* Check specification is satisfied by payment method
*
* @param string $paymentMethod
* @return bool
*/
public function isSatisfiedBy($paymentMethod);
}