PluginProbe
ReCrawler / 0.2.0
ReCrawler v0.2.0
1.1.0 1.0.2 1.0.1 1.0.0 0.3.4 0.3.3 0.1.1 0.1.2 0.1.2.1 0.1.2.2 0.1.3 0.1.4 0.1.5 0.2.0 0.3.0 0.3.1 0.3.2 trunk 0.1.0 0.1.0.1
recrawler / src / SearchEngineInterface.php

SearchEngineInterface.php in ReCrawler 0.2.0, at src/SearchEngineInterface.php

16 lines 270 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Main class.
4 *
5 * @package Mihdan\ReCrawler
6 */
7
8 namespace Mihdan\ReCrawler;
9
10 interface SearchEngineInterface {
11 public function get_slug(): string;
12 public function get_name(): string;
13 public function setup_hooks();
14 public function is_enabled(): bool;
15 }
16