10 lines
190 B
PHP
10 lines
190 B
PHP
<?php
|
|
|
|
namespace Automattic\Jetpack_Boost\Contracts;
|
|
|
|
/**
|
|
* Modules with this interface will not work if the website is not publicly available.
|
|
*/
|
|
interface Needs_Website_To_Be_Public {
|
|
}
|