Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | CRAP |
<?php | |
/** | |
* @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl> | |
*/ | |
namespace Team3\PayU\PropertyExtractor; | |
use Psr\Log\LoggerInterface; | |
/** | |
* Will return {@link ExtractorInterface} | |
* | |
* Interface PropertyExtractorFactoryInterface | |
* @package Team3\PayU\PropertyExtractor | |
*/ | |
interface PropertyExtractorFactoryInterface | |
{ | |
/** | |
* @param LoggerInterface $logger | |
* | |
* @return Extractor | |
*/ | |
public function build(LoggerInterface $logger); | |
} |