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

Billingo Official for WooCommerce, version trunk. 13 lines.

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

```php
<?php

namespace App\Billingo\Contracts;

use App\Billingo\Service\SelfTest;

interface SelfControlInterface
{
    public function hasError(): bool;

    public function getSelfTest(): SelfTest;
}

```
