# recrawler/0.2.0/src/SearchEngineInterface.php

ReCrawler, version 0.2.0. 16 lines.

- Page: https://pluginprobe.com/plugins/recrawler/0.2.0/code/src/SearchEngineInterface.php
- Raw: https://pluginprobe.com/plugins/recrawler/0.2.0/raw/src/SearchEngineInterface.php
- Modified: 2024-05-12T13:24:12+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/recrawler/0.2.0/code/src/SearchEngineInterface.php#L10-L20`.

```php
<?php
/**
 * Main class.
 *
 * @package Mihdan\ReCrawler
 */

namespace Mihdan\ReCrawler;

interface SearchEngineInterface {
	public function get_slug(): string;
	public function get_name(): string;
	public function setup_hooks();
	public function is_enabled(): bool;
}

```
