# billingo/4.2.9/src/Validation/Util/ServerTimeValidator.php

Billingo Official for WooCommerce, version 4.2.9. 20 lines.

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

```php
<?php

namespace App\Billingo\Validation\Util;

use App\Billingo\Validation\Validator;

class ServerTimeValidator extends Validator
{

    protected function rules(): array
    {
        return [
            'epoch' => ['optional', 'integer'],
            'formatted' => ['optional', 'string'],
            'w3c' => ['optional', 'string'],
            'timezone' => ['optional', 'string'],
        ];
    }
}

```
