# hostinger/3.0.76/includes/Admin/Jobs/JobInterface.php

Hostinger Tools, version 3.0.76. 15 lines.

- Page: https://pluginprobe.com/plugins/hostinger/3.0.76/code/includes/Admin/Jobs/JobInterface.php
- Raw: https://pluginprobe.com/plugins/hostinger/3.0.76/raw/includes/Admin/Jobs/JobInterface.php
- Modified: 2025-08-21T12:01:32+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/hostinger/3.0.76/code/includes/Admin/Jobs/JobInterface.php#L10-L20`.

```php
<?php

namespace Hostinger\Admin\Jobs;

defined( 'ABSPATH' ) || exit;

interface JobInterface {
    public function get_name(): string;
    public function get_process_item_hook(): string;
    public function get_start_hook(): string;
    public function can_schedule( array $args = array() ): bool;
    public function schedule( array $args = array() );
    public function init();
}

```
