10 lines
181 B
PHP
10 lines
181 B
PHP
<?php
|
|
|
|
namespace Automattic\Jetpack_Boost\Contracts;
|
|
|
|
/**
|
|
* Features can implement this interface to indicate that they are an optimization feature.
|
|
*/
|
|
interface Optimization {
|
|
}
|