# tamara-checkout/trunk/src/Interfaces/WPPluginInterface.php

Tamara Checkout, version trunk. 15 lines.

- Page: https://pluginprobe.com/plugins/tamara-checkout/trunk/code/src/Interfaces/WPPluginInterface.php
- Raw: https://pluginprobe.com/plugins/tamara-checkout/trunk/raw/src/Interfaces/WPPluginInterface.php
- Modified: 2022-11-05T19:26:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tamara-checkout/trunk/code/src/Interfaces/WPPluginInterface.php#L10-L20`.

```php
<?php


namespace Tamara\Wp\Plugin\Interfaces;


interface WPPluginInterface
{
    /**
     * A method to apply all actions to plugins after configured with params: apply hooks, set up something
     */
    public function initPlugin(): void;
}


```
