Skip to content

Commit

Permalink
Code style
Browse files Browse the repository at this point in the history
  • Loading branch information
jensschuppe committed Jan 19, 2024
1 parent 41052ad commit c9df43d
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@

class RegisterFormController extends ControllerBase {

const CONTEXT_CREATE = 'create';
public const CONTEXT_CREATE = 'create';

const CONTEXT_UPDATE = 'update';
public const CONTEXT_UPDATE = 'update';

const CONTEXT_CANCEL = 'cancel';
public const CONTEXT_CANCEL = 'cancel';

/**
* @var CiviMRF $cmrf
Expand Down Expand Up @@ -64,9 +64,7 @@ public static function create(ContainerInterface $container) {
* @var CiviMRF $cmrf
*/
$cmrf = $container->get('civiremote_event.cmrf');
return new static(
$cmrf
);
return new static($cmrf);
}

/**
Expand Down

0 comments on commit c9df43d

Please sign in to comment.