Cake\Localized\Validation\DeValidation::address1 PHP Method

address1() public static method

That is what is called "Straße und Hausnummer", the first line of a german formal address block.
public static address1 ( string $check ) : boolean
$check string The value to check.
return boolean Success.
    public static function address1($check)
    {
        $pattern = '/[a-zA-ZäöüÄÖÜß \\.]+ [0-9]+[a-zA-Z]?/';
        return (bool) preg_match($pattern, $check);
    }