diff --git a/source/plg_system_mokosuitebooking/src/Extension/Booking.php b/source/plg_system_mokosuitebooking/src/Extension/Booking.php new file mode 100644 index 0000000..0f9cc86 --- /dev/null +++ b/source/plg_system_mokosuitebooking/src/Extension/Booking.php @@ -0,0 +1,23 @@ + + * @license GPL-3.0-or-later + */ + +namespace Moko\Plugin\System\MokoSuiteBooking\Extension; + +defined('_JEXEC') or die; + +use Joomla\CMS\Plugin\CMSPlugin; +use Joomla\Event\DispatcherInterface; +use Psr\Container\ContainerInterface; + +final class Booking extends CMSPlugin +{ + protected $autoloadLanguage = true; + + public function boot(ContainerInterface $container): void + { + } +}