# billingo/4.2.9/src/Validation/DocumentExport/LedgerNumberInformationValidator.php

Billingo Official for WooCommerce, version 4.2.9. 20 lines.

- Page: https://pluginprobe.com/plugins/billingo/4.2.9/code/src/Validation/DocumentExport/LedgerNumberInformationValidator.php
- Raw: https://pluginprobe.com/plugins/billingo/4.2.9/raw/src/Validation/DocumentExport/LedgerNumberInformationValidator.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/Validation/DocumentExport/LedgerNumberInformationValidator.php#L10-L20`.

```php
<?php

namespace App\Billingo\Validation\DocumentExport;

use App\Billingo\Validation\Validator;

class LedgerNumberInformationValidator extends Validator
{

    protected function rules(): array
    {
        return [
            'bevetel' => ['optional', 'string'],
            'vevo' => ['optional', 'string'],
            'penztar' => ['optional', 'string'],
            'afa' => ['optional', 'string'],
        ];
    }
}

```
