1 | <?php |
||
9 | class RowPicker implements PickerInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | private $rowBddName; |
||
15 | |||
16 | /** |
||
17 | * Matcher constructor. |
||
18 | * @param string $rowBddName |
||
19 | */ |
||
20 | public function __construct($rowBddName) |
||
24 | |||
25 | /** |
||
26 | * @param RowInterface $row |
||
27 | * @return array |
||
28 | */ |
||
29 | public function pick(RowInterface $row) |
||
33 | } |