We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 15 | class GermanBank extends AbstractRule |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var BAV |
||
| 19 | */ |
||
| 20 | public $bav; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param BAV $bav |
||
| 24 | */ |
||
| 25 | 5 | public function __construct(BAV $bav = null) |
|
| 26 | { |
||
| 27 | 5 | if (null === $bav) { |
|
| 28 | 1 | $bav = new BAV(); |
|
| 29 | 1 | } |
|
| 30 | 5 | $this->bav = $bav; |
|
| 31 | 5 | } |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @return boolean |
||
| 35 | */ |
||
| 36 | 3 | public function validate($input) |
|
| 40 | } |
||
| 41 |