Skip to content

Commit

Permalink
camelCase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
detain committed Jun 21, 2017
1 parent a2e1fcd commit c376ded
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ function_requirements('class.Addon');
$service->add_addon($addon);
}

public static function Enable(\Service_Order $service_order) {
$serviceInfo = $service_order->getServiceInfo();
$settings = get_module_settings($service_order->get_module());
public static function Enable(\Service_Order $serviceOrder) {
$serviceInfo = $serviceOrder->getServiceInfo();
$settings = get_module_settings($serviceOrder->get_module());
require_once 'include/licenses/license.functions.inc.php';
function_requirements('activate_fantastico');
activate_fantastico($serviceInfo[$settings['PREFIX'].'_ip'], 2);
$GLOBALS['tf']->history->add($settings['TABLE'], 'add_fantastico', $serviceInfo[$settings['PREFIX'].'_id'], $serviceInfo[$settings['PREFIX'].'_ip'], $serviceInfo[$settings['PREFIX'].'_custid']);
}

public static function Disable(\Service_Order $service_order) {
public static function Disable(\Service_Order $serviceOrder) {
}

public static function getSettings(GenericEvent $event) {
Expand Down

0 comments on commit c376ded

Please sign in to comment.