1 | <?php |
||
7 | abstract class AbstractProcessor implements ProcessorInterface |
||
8 | { |
||
9 | /** |
||
10 | * |
||
11 | * @var \Sokil\FraudDetector\Detector |
||
12 | */ |
||
13 | protected $detector; |
||
14 | |||
15 | protected function init() {} |
||
16 | |||
17 | public function __construct(Detector $detector) |
||
23 | |||
24 | public function getName() |
||
32 | |||
33 | public function afterCheckPassed() {} |
||
34 | |||
35 | public function afterCheckFailed() {} |
||
36 | } |