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