Merge pull request #16785 from demeritcowboy/weird-casetype-check
[civicrm-core.git] / CRM / Event / StateMachine / Registration.php
index 7d325f17f8cfa6e82cbf6065f266e562c4aad578..b86e7baf2072b63316ff32bc2b614c4088391133 100644 (file)
@@ -1,34 +1,18 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 5                                                  |
- +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2019                                |
- +--------------------------------------------------------------------+
- | This file is a part of CiviCRM.                                    |
- |                                                                    |
- | CiviCRM is free software; you can copy, modify, and distribute it  |
- | under the terms of the GNU Affero General Public License           |
- | Version 3, 19 November 2007 and the CiviCRM Licensing Exception.   |
- |                                                                    |
- | CiviCRM is distributed in the hope that it will be useful, but     |
- | WITHOUT ANY WARRANTY; without even the implied warranty of         |
- | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.               |
- | See the GNU Affero General Public License for more details.        |
+ | Copyright CiviCRM LLC. All rights reserved.                        |
  |                                                                    |
- | You should have received a copy of the GNU Affero General Public   |
- | License and the CiviCRM Licensing Exception along                  |
- | with this program; if not, contact CiviCRM LLC                     |
- | at info[AT]civicrm[DOT]org. If you have questions about the        |
- | GNU Affero General Public License or the licensing of CiviCRM,     |
- | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
+ | This work is published under the GNU AGPLv3 license with some      |
+ | permitted exceptions and without any warranty. For full license    |
+ | and copyright information, see https://civicrm.org/licensing       |
  +--------------------------------------------------------------------+
  */
 
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2019
+ * @copyright CiviCRM LLC https://civicrm.org/licensing
  * $Id$
  *
  */
@@ -53,7 +37,7 @@ class CRM_Event_StateMachine_Registration extends CRM_Core_StateMachine {
     $is_monetary = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $id, 'is_monetary');
     $is_confirm_enabled = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $id, 'is_confirm_enabled');
 
-    $pages = array('CRM_Event_Form_Registration_Register' => NULL);
+    $pages = ['CRM_Event_Form_Registration_Register' => NULL];
 
     //handle additional participant scenario, where we need to insert participant pages on runtime
     $additionalParticipant = NULL;
@@ -83,10 +67,10 @@ class CRM_Event_StateMachine_Registration extends CRM_Core_StateMachine {
       $pages = array_merge($pages, $extraPages);
     }
 
-    $additionalPages = array(
+    $additionalPages = [
       'CRM_Event_Form_Registration_Confirm' => NULL,
       'CRM_Event_Form_Registration_ThankYou' => NULL,
-    );
+    ];
 
     $pages = array_merge($pages, $additionalPages);