# billingo/4.2.9/src/Models/Util/TaxNumber.php

Billingo Official for WooCommerce, version 4.2.9. 21 lines.

- Page: https://pluginprobe.com/plugins/billingo/4.2.9/code/src/Models/Util/TaxNumber.php
- Raw: https://pluginprobe.com/plugins/billingo/4.2.9/raw/src/Models/Util/TaxNumber.php
- Modified: 2025-05-26T04:53:08+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/billingo/4.2.9/code/src/Models/Util/TaxNumber.php#L10-L20`.

```php
<?php

namespace App\Billingo\Models\Util;

use App\Billingo\Contracts\ValidableInterface;
use App\Billingo\Models\BillingoModel;
use App\Billingo\Validation\Util\TaxNumberValidator;

/**
 * @property string $tax_number
 * @property string $result
 */
class TaxNumber extends BillingoModel
{

    protected function getValidator(): ValidableInterface
    {
        return new TaxNumberValidator();
    }
}

```
