13 lines
205 B
PHP
13 lines
205 B
PHP
<?php
|
|
|
|
namespace WebpConverterVendor\MattPlugins\DeactivationModal;
|
|
|
|
interface Hookable
|
|
{
|
|
/**
|
|
* Init hooks (actions and filters).
|
|
*
|
|
* @return void
|
|
*/
|
|
public function hooks();
|
|
}
|