# billingo/trunk/src/Contracts/ValidableInterface.php

Billingo Official for WooCommerce, version trunk. 11 lines.

- Page: https://pluginprobe.com/plugins/billingo/trunk/code/src/Contracts/ValidableInterface.php
- Raw: https://pluginprobe.com/plugins/billingo/trunk/raw/src/Contracts/ValidableInterface.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/trunk/code/src/Contracts/ValidableInterface.php#L10-L20`.

```php
<?php

namespace App\Billingo\Contracts;

interface ValidableInterface
{
    public function validate(array $data): array;

    public function validateProperty(string $key, mixed $value): bool;
}

```
