From 3c6734a9a5e6c322c37d8c63c3d1835743b38496 Mon Sep 17 00:00:00 2001 From: Joe Huss Date: Thu, 4 Apr 2019 04:06:57 -0400 Subject: [PATCH] updated the formatting --- src/Plugin.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Plugin.php b/src/Plugin.php index 2fbd6f5..838736d 100644 --- a/src/Plugin.php +++ b/src/Plugin.php @@ -41,10 +41,10 @@ public static function getHooks() */ public static function getRequirements(GenericEvent $event) { - /** - * @var \MyAdmin\Plugins\Loader $this->loader - */ - $loader = $event->getSubject(); + /** + * @var \MyAdmin\Plugins\Loader $this->loader + */ + $loader = $event->getSubject(); $loader->add_page_requirement('vps_add_fantastico', '/../vendor/detain/myadmin-fantastico-vps-addon/src/vps_add_fantastico.php'); } @@ -107,12 +107,12 @@ public static function doDisable(\ServiceHandler $serviceOrder, $repeatInvoiceId /** * @param \Symfony\Component\EventDispatcher\GenericEvent $event */ - public static function getSettings(GenericEvent $event) - { - /** - * @var \MyAdmin\Settings $settings - **/ - $settings = $event->getSubject(); + public static function getSettings(GenericEvent $event) + { + /** + * @var \MyAdmin\Settings $settings + **/ + $settings = $event->getSubject(); $settings->add_text_setting(self::$module, _('Addon Costs'), 'vps_fantastico_cost', _('VPS Fantastico License'), _('This is the cost for purchasing a fantastico license on top of a VPS.'), $settings->get_setting('VPS_FANTASTICO_COST')); } }