oont-contents/plugins/webp-converter-for-media/src/HookableInterface.php
2025-02-08 15:10:23 +01:00

16 lines
254 B
PHP

<?php
namespace WebpConverter;
/**
* Interface for class which has action call to integrates with WordPress hooks.
*/
interface HookableInterface {
/**
* Integrates with WordPress hooks.
*
* @return void
*/
public function init_hooks();
}