Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | /** |
| 3 | * Interface Module. |
| 4 | * |
| 5 | * Every module inside src/Modules/ should implement |
| 6 | * to this interface. |
| 7 | * |
| 8 | * @package RtCamp\GoogleLogin |
| 9 | * @since 1.0.0 |
| 10 | */ |
| 11 | |
| 12 | namespace RtCamp\GoogleLogin\Interfaces; |
| 13 | |
| 14 | /** |
| 15 | * Interface Module |
| 16 | * |
| 17 | * @package WpGuruDev\OrderExport |
| 18 | */ |
| 19 | interface Module { |
| 20 | |
| 21 | /** |
| 22 | * Initialization of module. |
| 23 | * |
| 24 | * @return void |
| 25 | */ |
| 26 | public function init(): void; |
| 27 | |
| 28 | /** |
| 29 | * Return module name. |
| 30 | * |
| 31 | * @return string |
| 32 | */ |
| 33 | public function name(): string; |
| 34 | } |