| 1 | <?php // phpcs:ignore WordPress.Files.FileName.NotHyphenatedLowercase |
||
| 15 | class DummyPluginImpl implements DummyPlugin { |
||
| 16 | use \Automattic\Jetpack\Changelogger\PluginTrait; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Configuration. |
||
| 20 | * |
||
| 21 | * @var array |
||
| 22 | */ |
||
| 23 | public $config; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Constructor. |
||
| 27 | * |
||
| 28 | * @param array $config Configuration. |
||
| 29 | */ |
||
| 30 | public function __construct( array $config ) { |
||
| 33 | } |
||
| 34 |