PluginInterface.php 96 B

12345678
  1. <?php
  2. namespace App\Plugins;
  3. interface PluginInterface
  4. {
  5. public function __construct();
  6. }