Completed
Branch BUG-9957-float-left-float-righ... (b7fc25)
by
unknown
32:42 queued 16:46
created
core/db_classes/EE_Registration.class.php 4 patches
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
 			parent::set( 'STS_ID', $new_STS_ID, $use_default );
127 127
 			do_action( 'AHEE__EE_Registration__set_status__after_update', $this );
128 128
 			return TRUE;
129
-		}else{
129
+		} else{
130 130
 			//even though the old value matches the new value, it's still good to
131 131
 			//allow the parent set method to have a say
132 132
 			parent::set( 'STS_ID', $new_STS_ID, $use_default );
@@ -625,8 +625,9 @@  discard block
 block discarded – undo
625 625
 	 * @return EE_Registration
626 626
 	 */
627 627
 	public function get_primary_registration()  {
628
-		if ( $this->is_primary_registrant() )
629
-			return $this;
628
+		if ( $this->is_primary_registrant() ) {
629
+					return $this;
630
+		}
630 631
 
631 632
 		//k reg_count !== 1 so let's get the EE_Registration object matching this txn_id and reg_count == 1
632 633
 		$primary_registrant = EEM_Registration::instance()->get_one( array( array('TXN_ID' => $this->transaction_ID(), 'REG_count' => 1 ) ) );
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -618,9 +618,9 @@
 block discarded – undo
618 618
 
619 619
 
620 620
 	/**
621
-	*		get  Attendee Number
622
-	* 		@access		public
623
-	*/
621
+	 *		get  Attendee Number
622
+	 * 		@access		public
623
+	 */
624 624
 	public function count() {
625 625
 		return $this->get( 'REG_count' );
626 626
 	}
Please login to merge, or discard this patch.
Spacing   +181 added lines, -181 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php use EventEspresso\core\exceptions\EntityNotFoundException;
2 2
 
3
-if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) {
4
-	exit( 'No direct script access allowed' );
3
+if ( ! defined('EVENT_ESPRESSO_VERSION')) {
4
+	exit('No direct script access allowed');
5 5
 }
6 6
 /**
7 7
  * EE_Registration class
@@ -43,9 +43,9 @@  discard block
 block discarded – undo
43 43
 	 *                             		    date_format and the second value is the time format
44 44
 	 * @return EE_Registration
45 45
 	 */
46
-	public static function new_instance( $props_n_values = array(), $timezone = null, $date_formats = array() ) {
47
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__, $timezone, $date_formats );
48
-		return $has_object ? $has_object : new self( $props_n_values, false, $timezone, $date_formats );
46
+	public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) {
47
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats);
48
+		return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats);
49 49
 	}
50 50
 
51 51
 
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
 	 *                          		the website will be used.
57 57
 	 * @return EE_Registration
58 58
 	 */
59
-	public static function new_instance_from_db( $props_n_values = array(), $timezone = null ) {
60
-		return new self( $props_n_values, TRUE, $timezone );
59
+	public static function new_instance_from_db($props_n_values = array(), $timezone = null) {
60
+		return new self($props_n_values, TRUE, $timezone);
61 61
 	}
62 62
 
63 63
 
@@ -68,8 +68,8 @@  discard block
 block discarded – undo
68 68
 	 * @access        public
69 69
 	 * @param        int $EVT_ID Event ID
70 70
 	 */
71
-	public function set_event( $EVT_ID = 0 ) {
72
-		$this->set( 'EVT_ID', $EVT_ID );
71
+	public function set_event($EVT_ID = 0) {
72
+		$this->set('EVT_ID', $EVT_ID);
73 73
 	}
74 74
 
75 75
 
@@ -80,18 +80,18 @@  discard block
 block discarded – undo
80 80
 	 * @param mixed  $field_value
81 81
 	 * @param bool   $use_default
82 82
 	 */
83
-	public function set( $field_name, $field_value, $use_default = FALSE ) {
84
-		switch( $field_name ) {
83
+	public function set($field_name, $field_value, $use_default = FALSE) {
84
+		switch ($field_name) {
85 85
 			case 'REG_code' :
86
-				if ( ! empty( $field_value ) && $this->reg_code() == '' ) {
87
-					$this->set_reg_code( $field_value, $use_default );
86
+				if ( ! empty($field_value) && $this->reg_code() == '') {
87
+					$this->set_reg_code($field_value, $use_default);
88 88
 				}
89 89
 				break;
90 90
 			case 'STS_ID' :
91
-				$this->set_status( $field_value, $use_default );
91
+				$this->set_status($field_value, $use_default);
92 92
 				break;
93 93
 			default :
94
-				parent::set( $field_name, $field_value, $use_default );
94
+				parent::set($field_name, $field_value, $use_default);
95 95
 		}
96 96
 	}
97 97
 
@@ -109,30 +109,30 @@  discard block
 block discarded – undo
109 109
 	 * @return bool
110 110
 	 * @throws \EE_Error
111 111
 	 */
112
-	public function set_status( $new_STS_ID = NULL, $use_default = FALSE ) {
112
+	public function set_status($new_STS_ID = NULL, $use_default = FALSE) {
113 113
 		// get current REG_Status
114 114
 		$old_STS_ID = $this->status_ID();
115 115
 		// if status has changed
116
-		if ( $old_STS_ID !== $new_STS_ID  ) {
116
+		if ($old_STS_ID !== $new_STS_ID) {
117 117
 			// TO approved
118
-			if ( $new_STS_ID === EEM_Registration::status_id_approved ) {
118
+			if ($new_STS_ID === EEM_Registration::status_id_approved) {
119 119
 				// reserve a space by incrementing ticket and datetime sold values
120 120
 				$this->_reserve_registration_space();
121
-				do_action( 'AHEE__EE_Registration__set_status__to_approved', $this, $old_STS_ID, $new_STS_ID );
121
+				do_action('AHEE__EE_Registration__set_status__to_approved', $this, $old_STS_ID, $new_STS_ID);
122 122
 			// OR FROM  approved
123
-			} else if ( $old_STS_ID === EEM_Registration::status_id_approved ) {
123
+			} else if ($old_STS_ID === EEM_Registration::status_id_approved) {
124 124
 				// release a space by decrementing ticket and datetime sold values
125 125
 				$this->_release_registration_space();
126
-				do_action( 'AHEE__EE_Registration__set_status__from_approved', $this, $old_STS_ID, $new_STS_ID );
126
+				do_action('AHEE__EE_Registration__set_status__from_approved', $this, $old_STS_ID, $new_STS_ID);
127 127
 			}
128 128
 			// update status
129
-			parent::set( 'STS_ID', $new_STS_ID, $use_default );
130
-			do_action( 'AHEE__EE_Registration__set_status__after_update', $this );
129
+			parent::set('STS_ID', $new_STS_ID, $use_default);
130
+			do_action('AHEE__EE_Registration__set_status__after_update', $this);
131 131
 			return TRUE;
132
-		}else{
132
+		} else {
133 133
 			//even though the old value matches the new value, it's still good to
134 134
 			//allow the parent set method to have a say
135
-			parent::set( 'STS_ID', $new_STS_ID, $use_default );
135
+			parent::set('STS_ID', $new_STS_ID, $use_default);
136 136
 			return TRUE;
137 137
 		}
138 138
 	}
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
 	 * @access        public
145 145
 	 */
146 146
 	public function status_ID() {
147
-		return $this->get( 'STS_ID' );
147
+		return $this->get('STS_ID');
148 148
 	}
149 149
 
150 150
 
@@ -169,12 +169,12 @@  discard block
 block discarded – undo
169 169
 	 * @param boolean $include_archived whether to include archived tickets or not.
170 170
 	 * @return EE_Ticket
171 171
 	 */
172
-	public function ticket( $include_archived = TRUE ) {
172
+	public function ticket($include_archived = TRUE) {
173 173
 		$query_params = array();
174
-		if ( $include_archived ) {
175
-			$query_params[ 'default_where_conditions' ] = 'none';
174
+		if ($include_archived) {
175
+			$query_params['default_where_conditions'] = 'none';
176 176
 		}
177
-		return $this->get_first_related( 'Ticket', $query_params );
177
+		return $this->get_first_related('Ticket', $query_params);
178 178
 	}
179 179
 
180 180
 
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 	 */
203 203
 	public function wp_user() {
204 204
 		$event = $this->event();
205
-		if ( $event instanceof EE_Event ) {
205
+		if ($event instanceof EE_Event) {
206 206
 			return $event->wp_user();
207 207
 		}
208 208
 		return 0;
@@ -228,8 +228,8 @@  discard block
 block discarded – undo
228 228
 	 * @access        public
229 229
 	 * @param        int $ATT_ID Attendee ID
230 230
 	 */
231
-	public function set_attendee_id( $ATT_ID = 0 ) {
232
-		$this->set( 'ATT_ID', $ATT_ID );
231
+	public function set_attendee_id($ATT_ID = 0) {
232
+		$this->set('ATT_ID', $ATT_ID);
233 233
 	}
234 234
 
235 235
 
@@ -240,8 +240,8 @@  discard block
 block discarded – undo
240 240
 	 * @access        public
241 241
 	 * @param        int $TXN_ID Transaction ID
242 242
 	 */
243
-	public function set_transaction_id( $TXN_ID = 0 ) {
244
-		$this->set( 'TXN_ID', $TXN_ID );
243
+	public function set_transaction_id($TXN_ID = 0) {
244
+		$this->set('TXN_ID', $TXN_ID);
245 245
 	}
246 246
 
247 247
 
@@ -252,8 +252,8 @@  discard block
 block discarded – undo
252 252
 	 * @access    public
253 253
 	 * @param    string $REG_session PHP Session ID
254 254
 	 */
255
-	public function set_session( $REG_session = '' ) {
256
-		$this->set( 'REG_session', $REG_session );
255
+	public function set_session($REG_session = '') {
256
+		$this->set('REG_session', $REG_session);
257 257
 	}
258 258
 
259 259
 
@@ -264,8 +264,8 @@  discard block
 block discarded – undo
264 264
 	 * @access    public
265 265
 	 * @param    string $REG_url_link Registration URL Link
266 266
 	 */
267
-	public function set_reg_url_link( $REG_url_link = '' ) {
268
-		$this->set( 'REG_url_link', $REG_url_link );
267
+	public function set_reg_url_link($REG_url_link = '') {
268
+		$this->set('REG_url_link', $REG_url_link);
269 269
 	}
270 270
 
271 271
 
@@ -276,8 +276,8 @@  discard block
 block discarded – undo
276 276
 	 * @access        public
277 277
 	 * @param        int $REG_count Primary Attendee
278 278
 	 */
279
-	public function set_count( $REG_count = 1 ) {
280
-		$this->set( 'REG_count', $REG_count );
279
+	public function set_count($REG_count = 1) {
280
+		$this->set('REG_count', $REG_count);
281 281
 	}
282 282
 
283 283
 
@@ -288,8 +288,8 @@  discard block
 block discarded – undo
288 288
 	 * @access        public
289 289
 	 * @param        boolean $REG_group_size Group Registration
290 290
 	 */
291
-	public function set_group_size( $REG_group_size = FALSE ) {
292
-		$this->set( 'REG_group_size', $REG_group_size );
291
+	public function set_group_size($REG_group_size = FALSE) {
292
+		$this->set('REG_group_size', $REG_group_size);
293 293
 	}
294 294
 
295 295
 
@@ -372,8 +372,8 @@  discard block
 block discarded – undo
372 372
 	 * @access        public
373 373
 	 * @param        mixed ( int or string ) $REG_date Registration Date - Unix timestamp or string representation of Date
374 374
 	 */
375
-	public function set_reg_date( $REG_date = FALSE ) {
376
-		$this->set( 'REG_date', $REG_date );
375
+	public function set_reg_date($REG_date = FALSE) {
376
+		$this->set('REG_date', $REG_date);
377 377
 	}
378 378
 
379 379
 
@@ -384,8 +384,8 @@  discard block
 block discarded – undo
384 384
 	 * @access    public
385 385
 	 * @param    float $REG_final_price
386 386
 	 */
387
-	public function set_final_price( $REG_final_price = 0.00 ) {
388
-		$this->set( 'REG_final_price', $REG_final_price );
387
+	public function set_final_price($REG_final_price = 0.00) {
388
+		$this->set('REG_final_price', $REG_final_price);
389 389
 	}
390 390
 
391 391
 
@@ -396,8 +396,8 @@  discard block
 block discarded – undo
396 396
 	 * @access    public
397 397
 	 * @param    float $REG_paid
398 398
 	 */
399
-	public function set_paid( $REG_paid = 0.00 ) {
400
-		$this->set( 'REG_paid', $REG_paid );
399
+	public function set_paid($REG_paid = 0.00) {
400
+		$this->set('REG_paid', $REG_paid);
401 401
 	}
402 402
 
403 403
 
@@ -408,8 +408,8 @@  discard block
 block discarded – undo
408 408
 	 * @access        public
409 409
 	 * @param        boolean $REG_att_is_going Attendee Is Going
410 410
 	 */
411
-	public function set_att_is_going( $REG_att_is_going = FALSE ) {
412
-		$this->set( 'REG_att_is_going', $REG_att_is_going );
411
+	public function set_att_is_going($REG_att_is_going = FALSE) {
412
+		$this->set('REG_att_is_going', $REG_att_is_going);
413 413
 	}
414 414
 
415 415
 
@@ -419,7 +419,7 @@  discard block
 block discarded – undo
419 419
 	 * @return EE_Attendee
420 420
 	 */
421 421
 	public function attendee() {
422
-		return $this->get_first_related( 'Attendee' );
422
+		return $this->get_first_related('Attendee');
423 423
 	}
424 424
 
425 425
 
@@ -429,7 +429,7 @@  discard block
 block discarded – undo
429 429
 	 * @access        public
430 430
 	 */
431 431
 	public function event_ID() {
432
-		return $this->get( 'EVT_ID' );
432
+		return $this->get('EVT_ID');
433 433
 	}
434 434
 
435 435
 
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
 	 */
441 441
 	public function event_name() {
442 442
 		$event = $this->event_obj();
443
-		if ( $event ) {
443
+		if ($event) {
444 444
 			return $event->name();
445 445
 		} else {
446 446
 			return NULL;
@@ -454,7 +454,7 @@  discard block
 block discarded – undo
454 454
 	 * @return EE_Event
455 455
 	 */
456 456
 	public function event_obj() {
457
-		return $this->get_first_related( 'Event' );
457
+		return $this->get_first_related('Event');
458 458
 	}
459 459
 
460 460
 
@@ -464,7 +464,7 @@  discard block
 block discarded – undo
464 464
 	 * @access        public
465 465
 	 */
466 466
 	public function attendee_ID() {
467
-		return $this->get( 'ATT_ID' );
467
+		return $this->get('ATT_ID');
468 468
 	}
469 469
 
470 470
 
@@ -474,7 +474,7 @@  discard block
 block discarded – undo
474 474
 	 * @access        public
475 475
 	 */
476 476
 	public function session_ID() {
477
-		return $this->get( 'REG_session' );
477
+		return $this->get('REG_session');
478 478
 	}
479 479
 
480 480
 
@@ -484,7 +484,7 @@  discard block
 block discarded – undo
484 484
 	 * @param string $messenger 'pdf' or 'html'.  Default 'html'.
485 485
 	 * @return string
486 486
 	 */
487
-	public function receipt_url( $messenger = 'html' ) {
487
+	public function receipt_url($messenger = 'html') {
488 488
 
489 489
 		/**
490 490
 		 * The below will be deprecated one version after this.  We check first if there is a custom receipt template already in use on old system.  If there is then we just return the standard url for it.
@@ -492,12 +492,12 @@  discard block
 block discarded – undo
492 492
 		 * @since 4.5.0
493 493
 		 */
494 494
 		$template_relative_path = 'modules/gateways/Invoice/lib/templates/receipt_body.template.php';
495
-		$has_custom = EEH_Template::locate_template( $template_relative_path , array(), TRUE, TRUE, TRUE );
495
+		$has_custom = EEH_Template::locate_template($template_relative_path, array(), TRUE, TRUE, TRUE);
496 496
 
497
-		if ( $has_custom ) {
498
-			return add_query_arg( array( 'receipt' => 'true' ), $this->invoice_url( 'launch' ) );
497
+		if ($has_custom) {
498
+			return add_query_arg(array('receipt' => 'true'), $this->invoice_url('launch'));
499 499
 		}
500
-		return apply_filters( 'FHEE__EE_Registration__receipt_url__receipt_url', '', $this, $messenger, 'receipt' );
500
+		return apply_filters('FHEE__EE_Registration__receipt_url__receipt_url', '', $this, $messenger, 'receipt');
501 501
 	}
502 502
 
503 503
 
@@ -508,28 +508,28 @@  discard block
 block discarded – undo
508 508
 	 * @param string $messenger 'pdf' or 'html'.  Default 'html'.
509 509
 	 * @return string
510 510
 	 */
511
-	public function invoice_url( $messenger = 'html' ) {
511
+	public function invoice_url($messenger = 'html') {
512 512
 		/**
513 513
 		 * The below will be deprecated one version after this.  We check first if there is a custom invoice template already in use on old system.  If there is then we just return the standard url for it.
514 514
 		 *
515 515
 		 * @since 4.5.0
516 516
 		 */
517 517
 		$template_relative_path = 'modules/gateways/Invoice/lib/templates/invoice_body.template.php';
518
-		$has_custom = EEH_Template::locate_template( $template_relative_path , array(), TRUE, TRUE, TRUE );
518
+		$has_custom = EEH_Template::locate_template($template_relative_path, array(), TRUE, TRUE, TRUE);
519 519
 
520
-		if ( $has_custom ) {
521
-			if ( $messenger == 'html' ) {
522
-				return $this->invoice_url( 'launch' );
520
+		if ($has_custom) {
521
+			if ($messenger == 'html') {
522
+				return $this->invoice_url('launch');
523 523
 			}
524 524
 			$route = $messenger == 'download' || $messenger == 'pdf' ? 'download_invoice' : 'launch_invoice';
525 525
 
526
-			$query_args = array( 'ee' => $route, 'id' => $this->reg_url_link() );
527
-			if ( $messenger == 'html' ) {
526
+			$query_args = array('ee' => $route, 'id' => $this->reg_url_link());
527
+			if ($messenger == 'html') {
528 528
 				$query_args['html'] = TRUE;
529 529
 			}
530
-			return add_query_arg( $query_args, get_permalink( EE_Registry::instance()->CFG->core->thank_you_page_id ) );
530
+			return add_query_arg($query_args, get_permalink(EE_Registry::instance()->CFG->core->thank_you_page_id));
531 531
 		}
532
-		return apply_filters( 'FHEE__EE_Registration__invoice_url__invoice_url', '', $this, $messenger, 'invoice' );
532
+		return apply_filters('FHEE__EE_Registration__invoice_url__invoice_url', '', $this, $messenger, 'invoice');
533 533
 	}
534 534
 
535 535
 
@@ -542,7 +542,7 @@  discard block
 block discarded – undo
542 542
 	 * @throws \EE_Error
543 543
 	 */
544 544
 	public function reg_url_link() {
545
-		return (string)$this->get( 'REG_url_link' );
545
+		return (string) $this->get('REG_url_link');
546 546
 	}
547 547
 
548 548
 
@@ -552,8 +552,8 @@  discard block
 block discarded – undo
552 552
 	 * @param string $type 'download','launch', or 'html' (default is 'launch')
553 553
 	 * @return void
554 554
 	 */
555
-	public function e_invoice_url( $type = 'launch' ) {
556
-		echo $this->invoice_url( $type );
555
+	public function e_invoice_url($type = 'launch') {
556
+		echo $this->invoice_url($type);
557 557
 	}
558 558
 
559 559
 
@@ -573,7 +573,7 @@  discard block
 block discarded – undo
573 573
 	 * @return string
574 574
 	 */
575 575
 	public function payment_overview_url() {
576
-		return add_query_arg( array( 'e_reg_url_link' => $this->reg_url_link(), 'step' => 'payment_options', 'revisit' => TRUE ), EE_Registry::instance()->CFG->core->reg_page_url() );
576
+		return add_query_arg(array('e_reg_url_link' => $this->reg_url_link(), 'step' => 'payment_options', 'revisit' => TRUE), EE_Registry::instance()->CFG->core->reg_page_url());
577 577
 	}
578 578
 
579 579
 
@@ -584,7 +584,7 @@  discard block
 block discarded – undo
584 584
 	 * @return string
585 585
 	 */
586 586
 	public function edit_attendee_information_url() {
587
-		return add_query_arg( array( 'e_reg_url_link' => $this->reg_url_link(), 'step' => 'attendee_information', 'revisit' => TRUE ), EE_Registry::instance()->CFG->core->reg_page_url() );
587
+		return add_query_arg(array('e_reg_url_link' => $this->reg_url_link(), 'step' => 'attendee_information', 'revisit' => TRUE), EE_Registry::instance()->CFG->core->reg_page_url());
588 588
 	}
589 589
 
590 590
 
@@ -594,7 +594,7 @@  discard block
 block discarded – undo
594 594
 	 * @return string
595 595
 	 */
596 596
 	public function get_admin_edit_url() {
597
-		return EEH_URL::add_query_args_and_nonce( array( 'page' => 'espresso_registrations', 'action' => 'view_registration', '_REG_ID' => $this->ID() ), admin_url( 'admin.php' ) );
597
+		return EEH_URL::add_query_args_and_nonce(array('page' => 'espresso_registrations', 'action' => 'view_registration', '_REG_ID' => $this->ID()), admin_url('admin.php'));
598 598
 	}
599 599
 
600 600
 
@@ -604,7 +604,7 @@  discard block
 block discarded – undo
604 604
 	 * @access        public
605 605
 	 */
606 606
 	public function is_primary_registrant() {
607
-		return $this->get( 'REG_count' ) == 1 ? TRUE : FALSE;
607
+		return $this->get('REG_count') == 1 ? TRUE : FALSE;
608 608
 	}
609 609
 
610 610
 
@@ -613,12 +613,12 @@  discard block
 block discarded – undo
613 613
 	 * This returns the primary registration object for this registration group (which may be this object).
614 614
 	 * @return EE_Registration
615 615
 	 */
616
-	public function get_primary_registration()  {
617
-		if ( $this->is_primary_registrant() )
616
+	public function get_primary_registration() {
617
+		if ($this->is_primary_registrant())
618 618
 			return $this;
619 619
 
620 620
 		//k reg_count !== 1 so let's get the EE_Registration object matching this txn_id and reg_count == 1
621
-		$primary_registrant = EEM_Registration::instance()->get_one( array( array('TXN_ID' => $this->transaction_ID(), 'REG_count' => 1 ) ) );
621
+		$primary_registrant = EEM_Registration::instance()->get_one(array(array('TXN_ID' => $this->transaction_ID(), 'REG_count' => 1)));
622 622
 		return $primary_registrant;
623 623
 	}
624 624
 
@@ -629,7 +629,7 @@  discard block
 block discarded – undo
629 629
 	* 		@access		public
630 630
 	*/
631 631
 	public function count() {
632
-		return $this->get( 'REG_count' );
632
+		return $this->get('REG_count');
633 633
 	}
634 634
 
635 635
 
@@ -639,7 +639,7 @@  discard block
 block discarded – undo
639 639
 	 * @access        public
640 640
 	 */
641 641
 	public function group_size() {
642
-		return $this->get( 'REG_group_size' );
642
+		return $this->get('REG_group_size');
643 643
 	}
644 644
 
645 645
 
@@ -649,7 +649,7 @@  discard block
 block discarded – undo
649 649
 	 * @access        public
650 650
 	 */
651 651
 	public function date() {
652
-		return $this->get( 'REG_date' );
652
+		return $this->get('REG_date');
653 653
 	}
654 654
 
655 655
 
@@ -660,8 +660,8 @@  discard block
 block discarded – undo
660 660
 	 * @param string $time_format
661 661
 	 * @return string
662 662
 	 */
663
-	public function pretty_date( $date_format = NULL, $time_format = NULL ) {
664
-		return $this->get_datetime( 'REG_date', $date_format, $time_format );
663
+	public function pretty_date($date_format = NULL, $time_format = NULL) {
664
+		return $this->get_datetime('REG_date', $date_format, $time_format);
665 665
 	}
666 666
 
667 667
 
@@ -674,7 +674,7 @@  discard block
 block discarded – undo
674 674
 	 * @return    float
675 675
 	 */
676 676
 	public function final_price() {
677
-		return $this->get( 'REG_final_price' );
677
+		return $this->get('REG_final_price');
678 678
 	}
679 679
 
680 680
 
@@ -685,7 +685,7 @@  discard block
 block discarded – undo
685 685
 	 * @return string
686 686
 	 */
687 687
 	public function pretty_final_price() {
688
-		return $this->get_pretty( 'REG_final_price' );
688
+		return $this->get_pretty('REG_final_price');
689 689
 	}
690 690
 
691 691
 
@@ -696,7 +696,7 @@  discard block
 block discarded – undo
696 696
 	 * @return 	float
697 697
 	 */
698 698
 	public function paid() {
699
-		return $this->get( 'REG_paid' );
699
+		return $this->get('REG_paid');
700 700
 	}
701 701
 
702 702
 
@@ -707,7 +707,7 @@  discard block
 block discarded – undo
707 707
 	 * @return 	float
708 708
 	 */
709 709
 	public function pretty_paid() {
710
-		return $this->get_pretty( 'REG_paid' );
710
+		return $this->get_pretty('REG_paid');
711 711
 	}
712 712
 
713 713
 
@@ -719,11 +719,11 @@  discard block
 block discarded – undo
719 719
 	 * @param array $requires_payment
720 720
 	 * @return bool
721 721
 	 */
722
-	public function owes_monies_and_can_pay( $requires_payment = array()) {
722
+	public function owes_monies_and_can_pay($requires_payment = array()) {
723 723
 		// these reg statuses require payment (if event is not free)
724
-		$requires_payment = ! empty( $requires_payment ) ? $requires_payment : EEM_Registration::reg_statuses_that_allow_payment();
724
+		$requires_payment = ! empty($requires_payment) ? $requires_payment : EEM_Registration::reg_statuses_that_allow_payment();
725 725
 		if (
726
-			in_array( $this->status_ID(), $requires_payment ) &&
726
+			in_array($this->status_ID(), $requires_payment) &&
727 727
 			$this->final_price() != 0 &&
728 728
 			$this->final_price() != $this->paid()
729 729
 		) {
@@ -740,8 +740,8 @@  discard block
 block discarded – undo
740 740
 	 * @param bool $show_icons
741 741
 	 * @return void
742 742
 	 */
743
-	public function e_pretty_status( $show_icons = FALSE ) {
744
-		echo $this->pretty_status( $show_icons );
743
+	public function e_pretty_status($show_icons = FALSE) {
744
+		echo $this->pretty_status($show_icons);
745 745
 	}
746 746
 
747 747
 
@@ -752,10 +752,10 @@  discard block
 block discarded – undo
752 752
 	 * @param bool $show_icons
753 753
 	 * @return string
754 754
 	 */
755
-	public function pretty_status( $show_icons = FALSE ) {
756
-		$status = EEM_Status::instance()->localized_status( array( $this->status_ID() => __( 'unknown', 'event_espresso' ) ), FALSE, 'sentence' );
755
+	public function pretty_status($show_icons = FALSE) {
756
+		$status = EEM_Status::instance()->localized_status(array($this->status_ID() => __('unknown', 'event_espresso')), FALSE, 'sentence');
757 757
 		$icon = '';
758
-		switch ( $this->status_ID() ) {
758
+		switch ($this->status_ID()) {
759 759
 			case EEM_Registration::status_id_approved:
760 760
 				$icon = $show_icons ? '<span class="dashicons dashicons-star-filled ee-icon-size-16 green-text"></span>' : '';
761 761
 				break;
@@ -775,7 +775,7 @@  discard block
 block discarded – undo
775 775
 				$icon = $show_icons ? '<span class="dashicons dashicons-no ee-icon-size-16 red-text"></span>' : '';
776 776
 				break;
777 777
 		}
778
-		return $icon . $status[ $this->status_ID() ];
778
+		return $icon.$status[$this->status_ID()];
779 779
 	}
780 780
 
781 781
 
@@ -785,7 +785,7 @@  discard block
 block discarded – undo
785 785
 	 * @access        public
786 786
 	 */
787 787
 	public function att_is_going() {
788
-		return $this->get( 'REG_att_is_going' );
788
+		return $this->get('REG_att_is_going');
789 789
 	}
790 790
 
791 791
 
@@ -795,8 +795,8 @@  discard block
 block discarded – undo
795 795
 	 * @param array $query_params like EEM_Base::get_all
796 796
 	 * @return EE_Answer[]
797 797
 	 */
798
-	public function answers( $query_params = NULL ) {
799
-		return $this->get_many_related( 'Answer', $query_params );
798
+	public function answers($query_params = NULL) {
799
+		return $this->get_many_related('Answer', $query_params);
800 800
 	}
801 801
 
802 802
 
@@ -810,9 +810,9 @@  discard block
 block discarded – undo
810 810
 	 * (because the answer might be an array of answer values, so passing pretty_value=true
811 811
 	 * will convert it into some kind of string)
812 812
 	 */
813
-	public function answer_value_to_question( $question, $pretty_value=true ) {
813
+	public function answer_value_to_question($question, $pretty_value = true) {
814 814
 		$question_id = EEM_Question::instance()->ensure_is_ID($question);
815
-		return EEM_Answer::instance()->get_answer_value_to_question($this,$question_id,$pretty_value);
815
+		return EEM_Answer::instance()->get_answer_value_to_question($this, $question_id, $pretty_value);
816 816
 	}
817 817
 
818 818
 
@@ -825,13 +825,13 @@  discard block
 block discarded – undo
825 825
 	 */
826 826
 	public function question_groups() {
827 827
 		$question_groups = array();
828
-		if ( $this->event() instanceof EE_Event ) {
828
+		if ($this->event() instanceof EE_Event) {
829 829
 			$question_groups = $this->event()->question_groups(
830 830
 				array(
831 831
 					array(
832 832
 						'Event_Question_Group.EQG_primary' => $this->count() == 1 ? true : false
833 833
 					),
834
-					'order_by' => array( 'QSG_order' => 'ASC' )
834
+					'order_by' => array('QSG_order' => 'ASC')
835 835
 				)
836 836
 			);
837 837
 		}
@@ -848,7 +848,7 @@  discard block
 block discarded – undo
848 848
 	 */
849 849
 	public function count_question_groups() {
850 850
 		$qg_count = 0;
851
-		if ( $this->event() instanceof EE_Event ) {
851
+		if ($this->event() instanceof EE_Event) {
852 852
 			$qg_count = $this->event()->count_related(
853 853
 				'Question_Group',
854 854
 				array(
@@ -869,7 +869,7 @@  discard block
 block discarded – undo
869 869
 	 * @return string
870 870
 	 */
871 871
 	public function reg_date() {
872
-		return $this->get_datetime( 'REG_date' );
872
+		return $this->get_datetime('REG_date');
873 873
 	}
874 874
 
875 875
 
@@ -881,7 +881,7 @@  discard block
 block discarded – undo
881 881
 	 * @return EE_Datetime_Ticket
882 882
 	 */
883 883
 	public function datetime_ticket() {
884
-		return $this->get_first_related( 'Datetime_Ticket' );
884
+		return $this->get_first_related('Datetime_Ticket');
885 885
 	}
886 886
 
887 887
 
@@ -891,15 +891,15 @@  discard block
 block discarded – undo
891 891
 	 * @param EE_Datetime_Ticket $datetime_ticket
892 892
 	 * @return EE_Datetime_Ticket
893 893
 	 */
894
-	public function set_datetime_ticket( $datetime_ticket ) {
895
-		return $this->_add_relation_to( $datetime_ticket, 'Datetime_Ticket' );
894
+	public function set_datetime_ticket($datetime_ticket) {
895
+		return $this->_add_relation_to($datetime_ticket, 'Datetime_Ticket');
896 896
 	}
897 897
 	/**
898 898
 	 * Gets deleted
899 899
 	 * @return boolean
900 900
 	 */
901 901
 	public function deleted() {
902
-		return $this->get( 'REG_deleted' );
902
+		return $this->get('REG_deleted');
903 903
 	}
904 904
 
905 905
 	/**
@@ -908,7 +908,7 @@  discard block
 block discarded – undo
908 908
 	 * @return boolean
909 909
 	 */
910 910
 	public function set_deleted($deleted) {
911
-		$this->set( 'REG_deleted', $deleted );
911
+		$this->set('REG_deleted', $deleted);
912 912
 	}
913 913
 
914 914
 
@@ -918,7 +918,7 @@  discard block
 block discarded – undo
918 918
 	 * @return EE_Status
919 919
 	 */
920 920
 	public function status_obj() {
921
-		return $this->get_first_related( 'Status' );
921
+		return $this->get_first_related('Status');
922 922
 	}
923 923
 
924 924
 
@@ -929,7 +929,7 @@  discard block
 block discarded – undo
929 929
 	 * @return int
930 930
 	 */
931 931
 	public function count_checkins() {
932
-		return $this->get_model()->count_related( $this, 'Checkin' );
932
+		return $this->get_model()->count_related($this, 'Checkin');
933 933
 	}
934 934
 
935 935
 
@@ -939,7 +939,7 @@  discard block
 block discarded – undo
939 939
 	 * @return int
940 940
 	 */
941 941
 	public function count_checkins_not_checkedout() {
942
-		return $this->get_model()->count_related( $this, 'Checkin', array( array( 'CHK_in' => 1 ) ) );
942
+		return $this->get_model()->count_related($this, 'Checkin', array(array('CHK_in' => 1)));
943 943
 	}
944 944
 
945 945
 
@@ -952,20 +952,20 @@  discard block
 block discarded – undo
952 952
 	 *
953 953
 	 * @return bool
954 954
 	 */
955
-	public function can_checkin( $DTT_OR_ID, $check_approved = TRUE ) {
956
-		$DTT_ID = EEM_Datetime::instance()->ensure_is_ID( $DTT_OR_ID );
955
+	public function can_checkin($DTT_OR_ID, $check_approved = TRUE) {
956
+		$DTT_ID = EEM_Datetime::instance()->ensure_is_ID($DTT_OR_ID);
957 957
 
958 958
 		//first check registration status
959
-		if (  ( $check_approved && ! $this->is_approved() ) || ! $DTT_ID ) {
959
+		if (($check_approved && ! $this->is_approved()) || ! $DTT_ID) {
960 960
 			return false;
961 961
 		}
962 962
 		//is there a datetime ticket that matches this dtt_ID?
963
-		if ( ! ( EEM_Datetime_Ticket::instance()->exists( array( array( 'TKT_ID' => $this->get('TKT_ID' ), 'DTT_ID' => $DTT_ID ) ) ) ) ) {
963
+		if ( ! (EEM_Datetime_Ticket::instance()->exists(array(array('TKT_ID' => $this->get('TKT_ID'), 'DTT_ID' => $DTT_ID))))) {
964 964
 			return false;
965 965
 		}
966 966
 
967 967
 		//final check is against TKT_uses
968
-		return $this->verify_can_checkin_against_TKT_uses( $DTT_ID );
968
+		return $this->verify_can_checkin_against_TKT_uses($DTT_ID);
969 969
 	}
970 970
 
971 971
 
@@ -978,10 +978,10 @@  discard block
 block discarded – undo
978 978
 	 * @param int | EE_Datetime  $DTT_OR_ID  The datetime the registration is being checked against
979 979
 	 * @return bool   true means can checkin.  false means cannot checkin.
980 980
 	 */
981
-	public function verify_can_checkin_against_TKT_uses( $DTT_OR_ID ) {
982
-		$DTT_ID = EEM_Datetime::instance()->ensure_is_ID( $DTT_OR_ID );
981
+	public function verify_can_checkin_against_TKT_uses($DTT_OR_ID) {
982
+		$DTT_ID = EEM_Datetime::instance()->ensure_is_ID($DTT_OR_ID);
983 983
 
984
-		if ( ! $DTT_ID ) {
984
+		if ( ! $DTT_ID) {
985 985
 			return false;
986 986
 		}
987 987
 
@@ -989,23 +989,23 @@  discard block
 block discarded – undo
989 989
 
990 990
 		// if max uses is not set or equals infinity then return true cause its not a factor for whether user can check-in
991 991
 		// or not.
992
-		if ( ! $max_uses || $max_uses === EE_INF ) {
992
+		if ( ! $max_uses || $max_uses === EE_INF) {
993 993
 			return true;
994 994
 		}
995 995
 
996 996
 		//does this datetime have a checkin record?  If so, then the dtt count has already been verified so we can just
997 997
 		//go ahead and toggle.
998
-		if ( EEM_Checkin::instance()->exists( array( array( 'REG_ID' => $this->ID(), 'DTT_ID' => $DTT_ID ) ) ) ) {
998
+		if (EEM_Checkin::instance()->exists(array(array('REG_ID' => $this->ID(), 'DTT_ID' => $DTT_ID)))) {
999 999
 			return true;
1000 1000
 		}
1001 1001
 
1002 1002
 		//made it here so the last check is whether the number of checkins per unique datetime on this registration
1003 1003
 		//disallows further check-ins.
1004
-		$count_unique_dtt_checkins = EEM_Checkin::instance()->count( array( array( 'REG_ID' => $this->ID(), 'CHK_in' => true ) ), 'DTT_ID', true );
1004
+		$count_unique_dtt_checkins = EEM_Checkin::instance()->count(array(array('REG_ID' => $this->ID(), 'CHK_in' => true)), 'DTT_ID', true);
1005 1005
 		// checkins have already reached their max number of uses
1006 1006
 		// so registrant can NOT checkin
1007
-		if ( $count_unique_dtt_checkins >= $max_uses ) {
1008
-			EE_Error::add_error( __( 'Check-in denied because number of datetime uses for the ticket has been reached or exceeded.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ );
1007
+		if ($count_unique_dtt_checkins >= $max_uses) {
1008
+			EE_Error::add_error(__('Check-in denied because number of datetime uses for the ticket has been reached or exceeded.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__);
1009 1009
 			return false;
1010 1010
 		}
1011 1011
 		return true;
@@ -1026,15 +1026,15 @@  discard block
 block discarded – undo
1026 1026
 	 * @param  bool $verify  If true then can_checkin() is used to verify whether the person can be checked in or not.  Otherwise this forces change in checkin status.
1027 1027
 	 * @return int|BOOL            the chk_in status toggled to OR false if nothing got changed.
1028 1028
 	 */
1029
-	public function toggle_checkin_status( $DTT_ID = null, $verify = false ) {
1030
-		if ( empty( $DTT_ID ) ) {
1029
+	public function toggle_checkin_status($DTT_ID = null, $verify = false) {
1030
+		if (empty($DTT_ID)) {
1031 1031
 			$datetime = $this->get_related_primary_datetime();
1032 1032
 			$DTT_ID = $datetime->ID();
1033 1033
 		// verify the registration can checkin for the given DTT_ID
1034
-		} elseif ( ! $this->can_checkin( $DTT_ID, $verify ) ) {
1034
+		} elseif ( ! $this->can_checkin($DTT_ID, $verify)) {
1035 1035
 			EE_Error::add_error(
1036 1036
 					sprintf(
1037
-						__( 'The given registration (ID:%1$d) can not be checked in to the given DTT_ID (%2$d), because the registration does not have access', 'event_espresso'),
1037
+						__('The given registration (ID:%1$d) can not be checked in to the given DTT_ID (%2$d), because the registration does not have access', 'event_espresso'),
1038 1038
 						$this->ID(),
1039 1039
 						$DTT_ID
1040 1040
 					),
@@ -1048,8 +1048,8 @@  discard block
 block discarded – undo
1048 1048
 			EE_Registration::checkin_status_out => EE_Registration::checkin_status_in
1049 1049
 		);
1050 1050
 		//start by getting the current status so we know what status we'll be changing to.
1051
-		$cur_status = $this->check_in_status_for_datetime( $DTT_ID, NULL );
1052
-		$status_to = $status_paths[ $cur_status ];
1051
+		$cur_status = $this->check_in_status_for_datetime($DTT_ID, NULL);
1052
+		$status_to = $status_paths[$cur_status];
1053 1053
 		// database only records true for checked IN or false for checked OUT
1054 1054
 		// no record ( null ) means checked in NEVER, but we obviously don't save that
1055 1055
 		$new_status = $status_to == EE_Registration::checkin_status_in ? true : false;
@@ -1057,24 +1057,24 @@  discard block
 block discarded – undo
1057 1057
 		// because we are keeping track of Check-ins over time.
1058 1058
 		// Eventually we'll probably want to show a list table
1059 1059
 		// for the individual Check-ins so that they can be managed.
1060
-		$checkin = EE_Checkin::new_instance( array(
1060
+		$checkin = EE_Checkin::new_instance(array(
1061 1061
 				'REG_ID' => $this->ID(),
1062 1062
 				'DTT_ID' => $DTT_ID,
1063 1063
 				'CHK_in' => $new_status
1064
-		) );
1064
+		));
1065 1065
 		// if the record could not be saved then return false
1066
-		if ( $checkin->save() === 0 ) {
1067
-			if ( WP_DEBUG ) {
1066
+		if ($checkin->save() === 0) {
1067
+			if (WP_DEBUG) {
1068 1068
 				global $wpdb;
1069 1069
 				$error = sprintf(
1070
-					__( 'Registration check in update failed because of the following database error: %1$s%2$s', 'event_espresso' ),
1070
+					__('Registration check in update failed because of the following database error: %1$s%2$s', 'event_espresso'),
1071 1071
 					'<br />',
1072 1072
 					$wpdb->last_error
1073 1073
 				);
1074 1074
 			} else {
1075
-				$error = __( 'Registration check in update failed because of an unknown database error', 'event_espresso' );
1075
+				$error = __('Registration check in update failed because of an unknown database error', 'event_espresso');
1076 1076
 			}
1077
-			EE_Error::add_error( $error, __FILE__, __FUNCTION__, __LINE__ );
1077
+			EE_Error::add_error($error, __FILE__, __FUNCTION__, __LINE__);
1078 1078
 			return false;
1079 1079
 		}
1080 1080
 		return $status_to;
@@ -1098,19 +1098,19 @@  discard block
 block discarded – undo
1098 1098
 	 * @param EE_Checkin $checkin If present, we use the given checkin object rather than the dtt_id.
1099 1099
 	 * @return int            Integer representing Check-in status.
1100 1100
 	 */
1101
-	public function check_in_status_for_datetime( $DTT_ID = 0, $checkin = NULL ) {
1102
-		if ( empty( $DTT_ID ) && ! $checkin instanceof EE_Checkin ) {
1101
+	public function check_in_status_for_datetime($DTT_ID = 0, $checkin = NULL) {
1102
+		if (empty($DTT_ID) && ! $checkin instanceof EE_Checkin) {
1103 1103
 			$datetime = $this->get_related_primary_datetime();
1104
-			if ( ! $datetime instanceof EE_Datetime ) {
1104
+			if ( ! $datetime instanceof EE_Datetime) {
1105 1105
 				return 0;
1106 1106
 			}
1107 1107
 			$DTT_ID = $datetime->ID();
1108 1108
 		//verify the registration can checkin for the given DTT_ID
1109 1109
 		}
1110 1110
 		//get checkin object (if exists)
1111
-		$checkin = $checkin instanceof EE_Checkin ? $checkin : $this->get_first_related( 'Checkin', array( array( 'DTT_ID' => $DTT_ID ), 'order_by' => array( 'CHK_timestamp' => 'DESC' ) ) );
1112
-		if ( $checkin instanceof EE_Checkin ) {
1113
-			if ( $checkin->get( 'CHK_in' ) ) {
1111
+		$checkin = $checkin instanceof EE_Checkin ? $checkin : $this->get_first_related('Checkin', array(array('DTT_ID' => $DTT_ID), 'order_by' => array('CHK_timestamp' => 'DESC')));
1112
+		if ($checkin instanceof EE_Checkin) {
1113
+			if ($checkin->get('CHK_in')) {
1114 1114
 				return EE_Registration::checkin_status_in; //checked in
1115 1115
 			} else {
1116 1116
 				return EE_Registration::checkin_status_out; //had checked in but is now checked out.
@@ -1128,28 +1128,28 @@  discard block
 block discarded – undo
1128 1128
 	 * @param bool $error  This just flags that you want an error message returned. This is put in so that the error message can be customized with the attendee name.
1129 1129
 	 * @return string         internationalized message
1130 1130
 	 */
1131
-	public function get_checkin_msg( $DTT_ID, $error = FALSE ) {
1131
+	public function get_checkin_msg($DTT_ID, $error = FALSE) {
1132 1132
 		//let's get the attendee first so we can include the name of the attendee
1133
-		$attendee = $this->get_first_related( 'Attendee' );
1134
-		if ( $attendee instanceof EE_Attendee ) {
1135
-			if ( $error ) {
1136
-				return sprintf( __( "%s's check-in status was not changed.", "event_espresso" ), $attendee->full_name() );
1133
+		$attendee = $this->get_first_related('Attendee');
1134
+		if ($attendee instanceof EE_Attendee) {
1135
+			if ($error) {
1136
+				return sprintf(__("%s's check-in status was not changed.", "event_espresso"), $attendee->full_name());
1137 1137
 			}
1138
-			$cur_status = $this->check_in_status_for_datetime( $DTT_ID );
1138
+			$cur_status = $this->check_in_status_for_datetime($DTT_ID);
1139 1139
 			//what is the status message going to be?
1140
-			switch ( $cur_status ) {
1140
+			switch ($cur_status) {
1141 1141
 				case EE_Registration::checkin_status_never :
1142
-					return sprintf( __( "%s has been removed from Check-in records", "event_espresso" ), $attendee->full_name() );
1142
+					return sprintf(__("%s has been removed from Check-in records", "event_espresso"), $attendee->full_name());
1143 1143
 					break;
1144 1144
 				case EE_Registration::checkin_status_in :
1145
-					return sprintf( __( '%s has been checked in', 'event_espresso' ), $attendee->full_name() );
1145
+					return sprintf(__('%s has been checked in', 'event_espresso'), $attendee->full_name());
1146 1146
 					break;
1147 1147
 				case EE_Registration::checkin_status_out :
1148
-					return sprintf( __( '%s has been checked out', 'event_espresso' ), $attendee->full_name() );
1148
+					return sprintf(__('%s has been checked out', 'event_espresso'), $attendee->full_name());
1149 1149
 					break;
1150 1150
 			}
1151 1151
 		}
1152
-		return __( "The check-in status could not be determined.", "event_espresso" );
1152
+		return __("The check-in status could not be determined.", "event_espresso");
1153 1153
 	}
1154 1154
 
1155 1155
 
@@ -1174,7 +1174,7 @@  discard block
 block discarded – undo
1174 1174
 	 * @access        public
1175 1175
 	 */
1176 1176
 	public function reg_code() {
1177
-		return $this->get( 'REG_code' );
1177
+		return $this->get('REG_code');
1178 1178
 	}
1179 1179
 
1180 1180
 
@@ -1184,7 +1184,7 @@  discard block
 block discarded – undo
1184 1184
 	 * @access        public
1185 1185
 	 */
1186 1186
 	public function transaction_ID() {
1187
-		return $this->get( 'TXN_ID' );
1187
+		return $this->get('TXN_ID');
1188 1188
 	}
1189 1189
 
1190 1190
 
@@ -1193,7 +1193,7 @@  discard block
 block discarded – undo
1193 1193
 	 * @return int
1194 1194
 	 */
1195 1195
 	public function ticket_ID() {
1196
-		return $this->get( 'TKT_ID' );
1196
+		return $this->get('TKT_ID');
1197 1197
 	}
1198 1198
 
1199 1199
 
@@ -1205,17 +1205,17 @@  discard block
 block discarded – undo
1205 1205
 	 * @param    string $REG_code Registration Code
1206 1206
 	 * @param	boolean $use_default
1207 1207
 	 */
1208
-	public function set_reg_code( $REG_code, $use_default = FALSE ) {
1209
-		if ( empty( $REG_code )) {
1210
-			EE_Error::add_error( __( 'REG_code can not be empty.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__ );
1208
+	public function set_reg_code($REG_code, $use_default = FALSE) {
1209
+		if (empty($REG_code)) {
1210
+			EE_Error::add_error(__('REG_code can not be empty.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__);
1211 1211
 			return;
1212 1212
 		}
1213
-		if ( ! $this->reg_code() ) {
1214
-			parent::set( 'REG_code', $REG_code, $use_default );
1213
+		if ( ! $this->reg_code()) {
1214
+			parent::set('REG_code', $REG_code, $use_default);
1215 1215
 		} else {
1216 1216
 			EE_Error::doing_it_wrong(
1217
-				__CLASS__ . '::' . __FUNCTION__,
1218
-				__( 'Can not change a registration REG_code once it has been set.', 'event_espresso' ),
1217
+				__CLASS__.'::'.__FUNCTION__,
1218
+				__('Can not change a registration REG_code once it has been set.', 'event_espresso'),
1219 1219
 				'4.6.0'
1220 1220
 			);
1221 1221
 		}
@@ -1235,17 +1235,17 @@  discard block
 block discarded – undo
1235 1235
 	 * @return EE_Registration[]  or empty array if this isn't a group registration.
1236 1236
 	 */
1237 1237
 	public function get_all_other_registrations_in_group() {
1238
-		if ( $this->group_size() < 2 ) {
1238
+		if ($this->group_size() < 2) {
1239 1239
 			return array();
1240 1240
 		}
1241 1241
 
1242 1242
 		$query[0] = array(
1243 1243
 			'TXN_ID' => $this->transaction_ID(),
1244
-			'REG_ID' => array( '!=', $this->ID() ),
1244
+			'REG_ID' => array('!=', $this->ID()),
1245 1245
 			'TKT_ID' => $this->ticket_ID()
1246 1246
 			);
1247 1247
 
1248
-		$registrations = $this->get_model()->get_all( $query );
1248
+		$registrations = $this->get_model()->get_all($query);
1249 1249
 		return $registrations;
1250 1250
 	}
1251 1251
 
@@ -1254,14 +1254,14 @@  discard block
 block discarded – undo
1254 1254
 	 * @return string
1255 1255
 	 */
1256 1256
 	public function get_admin_details_link() {
1257
-		EE_Registry::instance()->load_helper( 'URL' );
1257
+		EE_Registry::instance()->load_helper('URL');
1258 1258
 		return EEH_URL::add_query_args_and_nonce(
1259 1259
 			array(
1260 1260
 				'page' => 'espresso_registrations',
1261 1261
 				'action' => 'view_registration',
1262 1262
 				'_REG_ID' => $this->ID()
1263 1263
 			),
1264
-			admin_url( 'admin.php' )
1264
+			admin_url('admin.php')
1265 1265
 		);
1266 1266
 	}
1267 1267
 
@@ -1286,12 +1286,12 @@  discard block
 block discarded – undo
1286 1286
 	 * @return string
1287 1287
 	 */
1288 1288
 	public function get_admin_overview_link() {
1289
-		EE_Registry::instance()->load_helper( 'URL' );
1289
+		EE_Registry::instance()->load_helper('URL');
1290 1290
 		return EEH_URL::add_query_args_and_nonce(
1291 1291
 			array(
1292 1292
 				'page' => 'espresso_registrations'
1293 1293
 			),
1294
-			admin_url( 'admin.php' )
1294
+			admin_url('admin.php')
1295 1295
 		);
1296 1296
 	}
1297 1297
 
@@ -1302,8 +1302,8 @@  discard block
 block discarded – undo
1302 1302
 	 * @return \EE_Registration[]
1303 1303
 	 * @throws \EE_Error
1304 1304
 	 */
1305
-	public function payments( $query_params = array() ) {
1306
-		return $this->get_many_related( 'Payment', $query_params );
1305
+	public function payments($query_params = array()) {
1306
+		return $this->get_many_related('Payment', $query_params);
1307 1307
 	}
1308 1308
 
1309 1309
 
@@ -1313,8 +1313,8 @@  discard block
 block discarded – undo
1313 1313
 	 * @return \EE_Registration_Payment[]
1314 1314
 	 * @throws \EE_Error
1315 1315
 	 */
1316
-	public function registration_payments( $query_params = array() ) {
1317
-		return $this->get_many_related( 'Registration_Payment', $query_params );
1316
+	public function registration_payments($query_params = array()) {
1317
+		return $this->get_many_related('Registration_Payment', $query_params);
1318 1318
 	}
1319 1319
 
1320 1320
 
@@ -1327,7 +1327,7 @@  discard block
 block discarded – undo
1327 1327
 	 * @return EE_Payment_Method|null
1328 1328
 	 */
1329 1329
 	public function payment_method() {
1330
-		return EEM_Payment_Method::instance()->get_last_used_for_registration( $this );
1330
+		return EEM_Payment_Method::instance()->get_last_used_for_registration($this);
1331 1331
 	}
1332 1332
 
1333 1333
 
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -898,7 +898,7 @@  discard block
 block discarded – undo
898 898
 	/**
899 899
 	 * Sets deleted
900 900
 	 * @param boolean $deleted
901
-	 * @return boolean
901
+	 * @return boolean|null
902 902
 	 */
903 903
 	public function set_deleted($deleted) {
904 904
 		$this->set( 'REG_deleted', $deleted );
@@ -942,6 +942,7 @@  discard block
 block discarded – undo
942 942
 	 *
943 943
 	 * @param int | EE_Datetime $DTT_OR_ID The datetime the registration is being checked against
944 944
 	 * @param bool   $check_approved   This is used to indicate whether the caller wants can_checkin to also consider registration status as well as datetime access.
945
+	 * @param integer $DTT_OR_ID
945 946
 	 *
946 947
 	 * @return bool
947 948
 	 */
@@ -1347,7 +1348,7 @@  discard block
 block discarded – undo
1347 1348
 	 * This grabs the payment method corresponding to the last payment made for the amount owing on the registration.
1348 1349
 	 * Note: if there are no payments on the registration there will be no payment method returned.
1349 1350
 	 *
1350
-	 * @return EE_Payment_Method|null
1351
+	 * @return EE_Base_Class|null
1351 1352
 	 */
1352 1353
 	public function payment_method() {
1353 1354
 		return EEM_Payment_Method::instance()->get_last_used_for_registration( $this );
Please login to merge, or discard this patch.
core/db_classes/EE_State.class.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1
-<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) {
2
-	exit( 'No direct script access allowed' );
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 /**
5 5
  * Event Espresso
@@ -32,9 +32,9 @@  discard block
 block discarded – undo
32 32
 	 * @param array $props_n_values
33 33
 	 * @return EE_State|mixed
34 34
 	 */
35
-	public static function new_instance( $props_n_values = array() ) {
36
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__ );
37
-		return $has_object ? $has_object : new self( $props_n_values );
35
+	public static function new_instance($props_n_values = array()) {
36
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__);
37
+		return $has_object ? $has_object : new self($props_n_values);
38 38
 	}
39 39
 
40 40
 
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
 	 * @param array $props_n_values
44 44
 	 * @return EE_State
45 45
 	 */
46
-	public static function new_instance_from_db( $props_n_values = array() ) {
47
-		return new self( $props_n_values, TRUE );
46
+	public static function new_instance_from_db($props_n_values = array()) {
47
+		return new self($props_n_values, TRUE);
48 48
 	}
49 49
 
50 50
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 	 * @return string
54 54
 	 */
55 55
 	public function country_iso() {
56
-		return $this->get( 'CNT_ISO' );
56
+		return $this->get('CNT_ISO');
57 57
 	}
58 58
 
59 59
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 	 * @return string
63 63
 	 */
64 64
 	public function abbrev() {
65
-		return $this->get( 'STA_abbrev' );
65
+		return $this->get('STA_abbrev');
66 66
 	}
67 67
 
68 68
 
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 	 * @return bool
72 72
 	 */
73 73
 	public function active() {
74
-		return $this->get( 'STA_active' );
74
+		return $this->get('STA_active');
75 75
 	}
76 76
 
77 77
 
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 	 * @return string
81 81
 	 */
82 82
 	public function name() {
83
-		return $this->get( 'STA_name' );
83
+		return $this->get('STA_name');
84 84
 	}
85 85
 
86 86
 
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 	 * @return EE_Country
90 90
 	 */
91 91
 	public function country() {
92
-		return $this->get_first_related( 'Country' );
92
+		return $this->get_first_related('Country');
93 93
 	}
94 94
 
95 95
 
@@ -97,8 +97,8 @@  discard block
 block discarded – undo
97 97
 	/**
98 98
 	 * @param $iso
99 99
 	 */
100
-	public function set_country_iso( $iso ) {
101
-		$this->set( 'CNT_ISO', $iso );
100
+	public function set_country_iso($iso) {
101
+		$this->set('CNT_ISO', $iso);
102 102
 	}
103 103
 
104 104
 
@@ -106,8 +106,8 @@  discard block
 block discarded – undo
106 106
 	/**
107 107
 	 * @param $abbrev
108 108
 	 */
109
-	public function set_abbrev( $abbrev ) {
110
-		$this->set( 'STA_abbrev', $abbrev );
109
+	public function set_abbrev($abbrev) {
110
+		$this->set('STA_abbrev', $abbrev);
111 111
 	}
112 112
 
113 113
 
@@ -115,8 +115,8 @@  discard block
 block discarded – undo
115 115
 	/**
116 116
 	 * @param $active
117 117
 	 */
118
-	public function set_active( $active ) {
119
-		$this->set( 'STA_active', $active );
118
+	public function set_active($active) {
119
+		$this->set('STA_active', $active);
120 120
 	}
121 121
 
122 122
 
@@ -124,8 +124,8 @@  discard block
 block discarded – undo
124 124
 	/**
125 125
 	 * @param $name
126 126
 	 */
127
-	public function set_name( $name ) {
128
-		$this->set( 'STA_name', $name );
127
+	public function set_name($name) {
128
+		$this->set('STA_name', $name);
129 129
 	}
130 130
 }
131 131
 
Please login to merge, or discard this patch.
core/db_classes/EE_Status.class.php 2 patches
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1
-<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) {
2
-	exit( 'No direct script access allowed' );
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 /**
5 5
  * Event Espresso
@@ -32,9 +32,9 @@  discard block
 block discarded – undo
32 32
 	 * @param array $props_n_values
33 33
 	 * @return EE_Status
34 34
 	 */
35
-	public static function new_instance( $props_n_values = array() ) {
36
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__ );
37
-		return $has_object ? $has_object : new self( $props_n_values );
35
+	public static function new_instance($props_n_values = array()) {
36
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__);
37
+		return $has_object ? $has_object : new self($props_n_values);
38 38
 	}
39 39
 
40 40
 
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
 	 * @param array $props_n_values
44 44
 	 * @return EE_Status
45 45
 	 */
46
-	public static function new_instance_from_db( $props_n_values = array() ) {
47
-		return new self( $props_n_values, TRUE );
46
+	public static function new_instance_from_db($props_n_values = array()) {
47
+		return new self($props_n_values, TRUE);
48 48
 	}
49 49
 
50 50
 
@@ -55,10 +55,10 @@  discard block
 block discarded – undo
55 55
 	 * @param string $schema
56 56
 	 * @return string
57 57
 	 */
58
-	function code( $plural = FALSE, $schema = 'upper' ) {
59
-		$id = $this->get( 'STS_ID' );
60
-		$code = EEM_Status::instance()->localized_status( array( $id => $this->get( 'STS_code' ) ), $plural, $schema );
61
-		return $code[ $id ];
58
+	function code($plural = FALSE, $schema = 'upper') {
59
+		$id = $this->get('STS_ID');
60
+		$code = EEM_Status::instance()->localized_status(array($id => $this->get('STS_code')), $plural, $schema);
61
+		return $code[$id];
62 62
 	}
63 63
 
64 64
 
@@ -68,8 +68,8 @@  discard block
 block discarded – undo
68 68
 	 * @param string $code
69 69
 	 * @return boolean
70 70
 	 */
71
-	function set_code( $code ) {
72
-		$this->set( 'STS_code', $code );
71
+	function set_code($code) {
72
+		$this->set('STS_code', $code);
73 73
 	}
74 74
 
75 75
 
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 	 * @return string
80 80
 	 */
81 81
 	function desc() {
82
-		return $this->get( 'STS_desc' );
82
+		return $this->get('STS_desc');
83 83
 	}
84 84
 
85 85
 
@@ -89,8 +89,8 @@  discard block
 block discarded – undo
89 89
 	 * @param string $desc
90 90
 	 * @return boolean
91 91
 	 */
92
-	function set_desc( $desc ) {
93
-		$this->set( 'STS_desc', $desc );
92
+	function set_desc($desc) {
93
+		$this->set('STS_desc', $desc);
94 94
 	}
95 95
 
96 96
 
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 	 * @return string
101 101
 	 */
102 102
 	function type() {
103
-		return $this->get( 'STS_type' );
103
+		return $this->get('STS_type');
104 104
 	}
105 105
 
106 106
 
@@ -110,8 +110,8 @@  discard block
 block discarded – undo
110 110
 	 * @param string $type
111 111
 	 * @return boolean
112 112
 	 */
113
-	function set_type( $type ) {
114
-		$this->set( 'STS_type', $type );
113
+	function set_type($type) {
114
+		$this->set('STS_type', $type);
115 115
 	}
116 116
 
117 117
 
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 	 * @return boolean
122 122
 	 */
123 123
 	function can_edit() {
124
-		return $this->get( 'STS_can_edit' );
124
+		return $this->get('STS_can_edit');
125 125
 	}
126 126
 
127 127
 
@@ -131,8 +131,8 @@  discard block
 block discarded – undo
131 131
 	 * @param boolean $can_edit
132 132
 	 * @return boolean
133 133
 	 */
134
-	function set_can_edit( $can_edit ) {
135
-		$this->set( 'STS_can_edit', $can_edit );
134
+	function set_can_edit($can_edit) {
135
+		$this->set('STS_can_edit', $can_edit);
136 136
 	}
137 137
 
138 138
 
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 	 * @return boolean
143 143
 	 */
144 144
 	function open() {
145
-		return $this->get( 'STS_open' );
145
+		return $this->get('STS_open');
146 146
 	}
147 147
 
148 148
 
@@ -152,8 +152,8 @@  discard block
 block discarded – undo
152 152
 	 * @param boolean $open
153 153
 	 * @return boolean
154 154
 	 */
155
-	function set_open( $open ) {
156
-		$this->set( 'STS_open', $open );
155
+	function set_open($open) {
156
+		$this->set('STS_open', $open);
157 157
 	}
158 158
 }
159 159
 
Please login to merge, or discard this patch.
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 	/**
67 67
 	 * Sets code
68 68
 	 * @param string $code
69
-	 * @return boolean
69
+	 * @return boolean|null
70 70
 	 */
71 71
 	function set_code( $code ) {
72 72
 		$this->set( 'STS_code', $code );
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 	/**
88 88
 	 * Sets desc
89 89
 	 * @param string $desc
90
-	 * @return boolean
90
+	 * @return boolean|null
91 91
 	 */
92 92
 	function set_desc( $desc ) {
93 93
 		$this->set( 'STS_desc', $desc );
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 	/**
109 109
 	 * Sets type
110 110
 	 * @param string $type
111
-	 * @return boolean
111
+	 * @return boolean|null
112 112
 	 */
113 113
 	function set_type( $type ) {
114 114
 		$this->set( 'STS_type', $type );
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
 	/**
130 130
 	 * Sets can_edit
131 131
 	 * @param boolean $can_edit
132
-	 * @return boolean
132
+	 * @return boolean|null
133 133
 	 */
134 134
 	function set_can_edit( $can_edit ) {
135 135
 		$this->set( 'STS_can_edit', $can_edit );
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
 	/**
151 151
 	 * Sets open
152 152
 	 * @param boolean $open
153
-	 * @return boolean
153
+	 * @return boolean|null
154 154
 	 */
155 155
 	function set_open( $open ) {
156 156
 		$this->set( 'STS_open', $open );
Please login to merge, or discard this patch.
core/db_classes/EE_Taxes.class.php 2 patches
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,8 +36,9 @@
 block discarded – undo
36 36
 		$tax = 0;
37 37
 		$total_tax = 0;
38 38
 		//This first checks to see if the given ticket is taxable.
39
-		if ( ! $ticket->get( 'TKT_taxable' ) )
40
-			return $tax;
39
+		if ( ! $ticket->get( 'TKT_taxable' ) ) {
40
+					return $tax;
41
+		}
41 42
 		//get subtotal (notice we're only retrieving a subtotal if there isn't one given)
42 43
 		$subtotal = self::get_subtotal_for_admin( $ticket );
43 44
 		//get taxes
Please login to merge, or discard this patch.
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1
-<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) {
2
-	exit( 'No direct script access allowed' );
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 /**
5 5
  * Taxes class
@@ -32,20 +32,20 @@  discard block
 block discarded – undo
32 32
 	 * @param  EE_Ticket $ticket incoming EE_Ticket
33 33
 	 * @return float             total taxes to apply to ticket.
34 34
 	 */
35
-	public static function get_total_taxes_for_admin( EE_Ticket $ticket ) {
35
+	public static function get_total_taxes_for_admin(EE_Ticket $ticket) {
36 36
 		$tax = 0;
37 37
 		$total_tax = 0;
38 38
 		//This first checks to see if the given ticket is taxable.
39
-		if ( ! $ticket->get( 'TKT_taxable' ) )
39
+		if ( ! $ticket->get('TKT_taxable'))
40 40
 			return $tax;
41 41
 		//get subtotal (notice we're only retrieving a subtotal if there isn't one given)
42
-		$subtotal = self::get_subtotal_for_admin( $ticket );
42
+		$subtotal = self::get_subtotal_for_admin($ticket);
43 43
 		//get taxes
44 44
 		$taxes = self::get_taxes_for_admin();
45 45
 		//apply taxes to subtotal
46
-		foreach ( $taxes as $tax ) {
46
+		foreach ($taxes as $tax) {
47 47
 			//assuming taxes are not cumulative
48
-			$total_tax += $subtotal * $tax->get( 'PRC_amount' ) / 100;
48
+			$total_tax += $subtotal * $tax->get('PRC_amount') / 100;
49 49
 		}
50 50
 		return $total_tax;
51 51
 	}
@@ -57,8 +57,8 @@  discard block
 block discarded – undo
57 57
 	 */
58 58
 	public static function get_total_taxes_percentage() {
59 59
 		$total_tax_percent = 0;
60
-		foreach( self::get_taxes_for_admin() as $tax_price ) {
61
-			$total_tax_percent += $tax_price->get( 'PRC_amount' );
60
+		foreach (self::get_taxes_for_admin() as $tax_price) {
61
+			$total_tax_percent += $tax_price->get('PRC_amount');
62 62
 		}
63 63
 		return $total_tax_percent;
64 64
 	}
@@ -69,9 +69,9 @@  discard block
 block discarded – undo
69 69
 	 * @param EE_Ticket $ticket
70 70
 	 * @return float
71 71
 	 */
72
-	public static function get_subtotal_for_admin( EE_Ticket $ticket ) {
72
+	public static function get_subtotal_for_admin(EE_Ticket $ticket) {
73 73
 		$TKT_ID = $ticket->ID();
74
-		return isset( self::$_subtotal[ $TKT_ID ] ) ? self::$_subtotal[ $TKT_ID ] : self::_get_subtotal_for_admin( $ticket );
74
+		return isset(self::$_subtotal[$TKT_ID]) ? self::$_subtotal[$TKT_ID] : self::_get_subtotal_for_admin($ticket);
75 75
 	}
76 76
 
77 77
 
@@ -81,29 +81,29 @@  discard block
 block discarded – undo
81 81
 	 * @param  EE_Ticket $ticket
82 82
 	 * @return float     subtotal calculated from all EE_Price[] on Ticket.
83 83
 	 */
84
-	private static function _get_subtotal_for_admin( EE_Ticket $ticket ) {
84
+	private static function _get_subtotal_for_admin(EE_Ticket $ticket) {
85 85
 		$subtotal = 0;
86 86
 		//get all prices
87
-		$prices = $ticket->get_many_related( 'Price', array( 'default_where_conditions' => 'none', 'order_by' => array( 'PRC_order' => 'ASC' ) ) );
87
+		$prices = $ticket->get_many_related('Price', array('default_where_conditions' => 'none', 'order_by' => array('PRC_order' => 'ASC')));
88 88
 		//let's loop through them (base price is always the first item)
89
-		foreach ( $prices as $price ) {
90
-			if ( $price instanceof EE_Price ) {
89
+		foreach ($prices as $price) {
90
+			if ($price instanceof EE_Price) {
91 91
 				$price_type = $price->type_obj();
92
-				if ( $price_type instanceof EE_Price_Type ) {
93
-					switch ( $price->type_obj()->base_type() ) {
92
+				if ($price_type instanceof EE_Price_Type) {
93
+					switch ($price->type_obj()->base_type()) {
94 94
 						case 1: // base price
95 95
 						case 3: // surcharges
96
-							$subtotal += $price->is_percent() ? $subtotal * $price->get( 'PRC_amount' ) / 100 : $price->get( 'PRC_amount' );
96
+							$subtotal += $price->is_percent() ? $subtotal * $price->get('PRC_amount') / 100 : $price->get('PRC_amount');
97 97
 							break;
98 98
 						case 2: // discounts
99
-							$subtotal -= $price->is_percent() ? $subtotal * $price->get( 'PRC_amount' ) / 100 : $price->get( 'PRC_amount' );
99
+							$subtotal -= $price->is_percent() ? $subtotal * $price->get('PRC_amount') / 100 : $price->get('PRC_amount');
100 100
 							break;
101 101
 					}
102 102
 				}
103 103
 			}
104 104
 		}
105 105
 		$TKT_ID = $ticket->ID();
106
-		self::$_subtotal = array( $TKT_ID => $subtotal );
106
+		self::$_subtotal = array($TKT_ID => $subtotal);
107 107
 		return $subtotal;
108 108
 	}
109 109
 
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 	 * @return EE_Price[] EE_Price objects that have PRT_ID == 4
115 115
 	 */
116 116
 	public static function get_taxes_for_admin() {
117
-		self::$_default_taxes = ! empty( self::$_default_taxes ) ? self::$_default_taxes : EE_Registry::instance()->load_model( 'Price' )->get_all( array( array( 'Price_Type.PBT_ID' => 4 ) ) );
117
+		self::$_default_taxes = ! empty(self::$_default_taxes) ? self::$_default_taxes : EE_Registry::instance()->load_model('Price')->get_all(array(array('Price_Type.PBT_ID' => 4)));
118 118
 		return self::$_default_taxes;
119 119
 	}
120 120
 
Please login to merge, or discard this patch.
core/db_classes/EE_Term.class.php 2 patches
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1
-<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) {
2
-	exit( 'No direct script access allowed' );
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 /**
5 5
  * Event Espresso
@@ -34,11 +34,11 @@  discard block
 block discarded – undo
34 34
 	 * @param bool $bydb
35 35
 	 * @param string $timezone
36 36
 	 */
37
-	protected function __construct( $fieldValues = array(), $bydb = FALSE, $timezone = '' ) {
38
-		if ( ! isset( $fieldValues[ 'slug' ] ) ) {
39
-			$fieldValues[ 'slug' ] = $fieldValues[ 'name' ];
37
+	protected function __construct($fieldValues = array(), $bydb = FALSE, $timezone = '') {
38
+		if ( ! isset($fieldValues['slug'])) {
39
+			$fieldValues['slug'] = $fieldValues['name'];
40 40
 		}
41
-		parent::__construct( $fieldValues, $bydb, $timezone );
41
+		parent::__construct($fieldValues, $bydb, $timezone);
42 42
 	}
43 43
 
44 44
 
@@ -47,9 +47,9 @@  discard block
 block discarded – undo
47 47
 	 * @param array $props_n_values
48 48
 	 * @return EE_Term|mixed
49 49
 	 */
50
-	public static function new_instance( $props_n_values = array() ) {
51
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__ );
52
-		return $has_object ? $has_object : new self( $props_n_values );
50
+	public static function new_instance($props_n_values = array()) {
51
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__);
52
+		return $has_object ? $has_object : new self($props_n_values);
53 53
 	}
54 54
 
55 55
 
@@ -58,8 +58,8 @@  discard block
 block discarded – undo
58 58
 	 * @param array $props_n_values
59 59
 	 * @return EE_Term
60 60
 	 */
61
-	public static function new_instance_from_db( $props_n_values = array() ) {
62
-		return new self( $props_n_values, TRUE );
61
+	public static function new_instance_from_db($props_n_values = array()) {
62
+		return new self($props_n_values, TRUE);
63 63
 	}
64 64
 
65 65
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 	 * @return string
70 70
 	 */
71 71
 	function name() {
72
-		return $this->get( 'name' );
72
+		return $this->get('name');
73 73
 	}
74 74
 
75 75
 
@@ -79,8 +79,8 @@  discard block
 block discarded – undo
79 79
 	 * @param string $name
80 80
 	 * @return boolean
81 81
 	 */
82
-	function set_name( $name ) {
83
-		$this->set( 'name', $name );
82
+	function set_name($name) {
83
+		$this->set('name', $name);
84 84
 	}
85 85
 
86 86
 
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 	 * @return string
91 91
 	 */
92 92
 	function slug() {
93
-		return $this->get( 'slug' );
93
+		return $this->get('slug');
94 94
 	}
95 95
 
96 96
 
@@ -100,8 +100,8 @@  discard block
 block discarded – undo
100 100
 	 * @param string $slug
101 101
 	 * @return boolean
102 102
 	 */
103
-	function set_slug( $slug ) {
104
-		$this->set( 'slug', $slug );
103
+	function set_slug($slug) {
104
+		$this->set('slug', $slug);
105 105
 	}
106 106
 }
107 107
 
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
 
44 44
 	/**
45
-	 * @return boolean
45
+	 * @return boolean|null
46 46
 	 */
47 47
 	public function initialize_reg_step() {
48 48
 
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 
170 170
 
171 171
 	/**
172
-	 * @return boolean
172
+	 * @return boolean|null
173 173
 	 */
174 174
 	public function update_reg_step() {
175 175
 		EE_Error::doing_it_wrong( __CLASS__ . '::' . __FILE__, __( 'Can not call update_reg_step() on the Finalize Registration reg step.', 'event_espresso'), '4.6.0' );
Please login to merge, or discard this patch.
core/db_classes/EE_Term_Relationship.class.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1
-<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) {
2
-	exit( 'No direct script access allowed' );
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 /**
5 5
  * Event Espresso
@@ -30,9 +30,9 @@  discard block
 block discarded – undo
30 30
 	 * @param array $props_n_values
31 31
 	 * @return EE_Term_Relationship
32 32
 	 */
33
-	public static function new_instance( $props_n_values = array() ) {
34
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__ );
35
-		return $has_object ? $has_object : new self( $props_n_values );
33
+	public static function new_instance($props_n_values = array()) {
34
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__);
35
+		return $has_object ? $has_object : new self($props_n_values);
36 36
 	}
37 37
 
38 38
 
@@ -41,8 +41,8 @@  discard block
 block discarded – undo
41 41
 	 * @param array $props_n_values
42 42
 	 * @return EE_Term_Relationship
43 43
 	 */
44
-	public static function new_instance_from_db( $props_n_values = array() ) {
45
-		return new self( $props_n_values, TRUE );
44
+	public static function new_instance_from_db($props_n_values = array()) {
45
+		return new self($props_n_values, TRUE);
46 46
 	}
47 47
 
48 48
 
Please login to merge, or discard this patch.
core/db_classes/EE_Term_Taxonomy.class.php 2 patches
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1
-<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) {
2
-	exit( 'No direct script access allowed' );
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 /**
5 5
  * Event Espresso
@@ -32,9 +32,9 @@  discard block
 block discarded – undo
32 32
 	 * @param array $props_n_values
33 33
 	 * @return EE_Term_Taxonomy
34 34
 	 */
35
-	public static function new_instance( $props_n_values = array() ) {
36
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__ );
37
-		return $has_object ? $has_object : new self( $props_n_values );
35
+	public static function new_instance($props_n_values = array()) {
36
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__);
37
+		return $has_object ? $has_object : new self($props_n_values);
38 38
 	}
39 39
 
40 40
 
@@ -43,8 +43,8 @@  discard block
 block discarded – undo
43 43
 	 * @param array $props_n_values
44 44
 	 * @return EE_Term_Taxonomy
45 45
 	 */
46
-	public static function new_instance_from_db( $props_n_values = array() ) {
47
-		return new self( $props_n_values, TRUE );
46
+	public static function new_instance_from_db($props_n_values = array()) {
47
+		return new self($props_n_values, TRUE);
48 48
 	}
49 49
 
50 50
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 	 * @return string
55 55
 	 */
56 56
 	function taxonomy() {
57
-		return $this->get( 'taxonomy' );
57
+		return $this->get('taxonomy');
58 58
 	}
59 59
 
60 60
 
@@ -64,8 +64,8 @@  discard block
 block discarded – undo
64 64
 	 * @param string $taxonomy
65 65
 	 * @return boolean
66 66
 	 */
67
-	function set_taxonomy( $taxonomy ) {
68
-		$this->set( 'taxonomy', $taxonomy );
67
+	function set_taxonomy($taxonomy) {
68
+		$this->set('taxonomy', $taxonomy);
69 69
 	}
70 70
 
71 71
 
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 	 * @return int
76 76
 	 */
77 77
 	function count() {
78
-		return $this->get( 'term_count' );
78
+		return $this->get('term_count');
79 79
 	}
80 80
 
81 81
 
@@ -85,8 +85,8 @@  discard block
 block discarded – undo
85 85
 	 * @param int $term_count
86 86
 	 * @return boolean
87 87
 	 */
88
-	function set_count( $term_count ) {
89
-		$this->set( 'term_count', $term_count );
88
+	function set_count($term_count) {
89
+		$this->set('term_count', $term_count);
90 90
 	}
91 91
 
92 92
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 	 * @return EE_Term
97 97
 	 */
98 98
 	function term() {
99
-		return $this->get_first_related( 'Term' );
99
+		return $this->get_first_related('Term');
100 100
 	}
101 101
 
102 102
 
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
 
44 44
 	/**
45
-	 * @return boolean
45
+	 * @return boolean|null
46 46
 	 */
47 47
 	public function initialize_reg_step() {
48 48
 
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 
170 170
 
171 171
 	/**
172
-	 * @return boolean
172
+	 * @return boolean|null
173 173
 	 */
174 174
 	public function update_reg_step() {
175 175
 		EE_Error::doing_it_wrong( __CLASS__ . '::' . __FILE__, __( 'Can not call update_reg_step() on the Finalize Registration reg step.', 'event_espresso'), '4.6.0' );
Please login to merge, or discard this patch.
core/db_classes/EE_Ticket_Template.class.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1
-<?php if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) {
2
-	exit( 'No direct script access allowed' );
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 /**
5 5
  * Event Espresso
@@ -35,9 +35,9 @@  discard block
 block discarded – undo
35 35
 	 * @param string $timezone
36 36
 	 * @return EE_Ticket_Template|mixed
37 37
 	 */
38
-	public static function new_instance( $props_n_values = array(), $timezone = '' ) {
39
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__, $timezone );
40
-		return $has_object ? $has_object : new self( $props_n_values, FALSE, $timezone );
38
+	public static function new_instance($props_n_values = array(), $timezone = '') {
39
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone);
40
+		return $has_object ? $has_object : new self($props_n_values, FALSE, $timezone);
41 41
 	}
42 42
 
43 43
 
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
 	 * @param string $timezone
48 48
 	 * @return EE_Ticket_Template
49 49
 	 */
50
-	public static function new_instance_from_db( $props_n_values = array(), $timezone = '' ) {
51
-		return new self( $props_n_values, TRUE, $timezone );
50
+	public static function new_instance_from_db($props_n_values = array(), $timezone = '') {
51
+		return new self($props_n_values, TRUE, $timezone);
52 52
 	}
53 53
 
54 54
 
Please login to merge, or discard this patch.
core/db_classes/EE_Transaction.class.php 3 patches
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -742,11 +742,11 @@
 block discarded – undo
742 742
 		$pm = $this->get_first_related('Payment_Method');
743 743
 		if( $pm instanceof EE_Payment_Method ){
744 744
 			return $pm;
745
-		}else{
745
+		} else{
746 746
 			$last_payment = $this->last_payment();
747 747
 			if( $last_payment instanceof EE_Payment && $last_payment->payment_method() ){
748 748
 				return $last_payment->payment_method();
749
-			}else{
749
+			} else{
750 750
 				return NULL;
751 751
 			}
752 752
 		}
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -412,7 +412,7 @@  discard block
 block discarded – undo
412 412
 	 * Gets all the attendees for this transaction (handy for use with EE_Attendee's get_registrations_for_event function
413 413
 	 * for getting attendees and how many registrations they each have for an event)
414 414
 	 *
415
-	 * @return mixed EE_Attendee[] by default, int if $output is set to 'COUNT'
415
+	 * @return EE_Base_Class[] EE_Attendee[] by default, int if $output is set to 'COUNT'
416 416
 	 * @throws \EE_Error
417 417
 	 */
418 418
 	public function attendees() {
@@ -693,7 +693,7 @@  discard block
 block discarded – undo
693 693
 	 * Gets all the extra meta info on this payment
694 694
 	 *
695 695
 	 * @param array $query_params like EEM_Base::get_all
696
-	 * @return EE_Extra_Meta
696
+	 * @return EE_Base_Class[]
697 697
 	 * @throws \EE_Error
698 698
 	 */
699 699
 	public function extra_meta( $query_params = array() ) {
@@ -870,7 +870,7 @@  discard block
 block discarded – undo
870 870
 	 * Sets PMD_ID
871 871
 	 *
872 872
 	 * @param int $PMD_ID
873
-	 * @return boolean
873
+	 * @return boolean|null
874 874
 	 * @throws \EE_Error
875 875
 	 */
876 876
 	public function set_payment_method_ID($PMD_ID) {
Please login to merge, or discard this patch.
Spacing   +106 added lines, -106 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1
-<?php if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) {
2
-	exit( 'No direct script access allowed' );
1
+<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) {
2
+	exit('No direct script access allowed');
3 3
 }
4 4
 /**
5 5
  * EE_Transaction class
@@ -25,11 +25,11 @@  discard block
 block discarded – undo
25 25
 	 * @return EE_Transaction
26 26
 	 * @throws \EE_Error
27 27
 	 */
28
-	public static function new_instance( $props_n_values = array(), $timezone = null, $date_formats = array() ) {
29
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__, $timezone, $date_formats );
28
+	public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) {
29
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats);
30 30
 		return $has_object
31 31
 			? $has_object
32
-			: new self( $props_n_values, false, $timezone, $date_formats );
32
+			: new self($props_n_values, false, $timezone, $date_formats);
33 33
 	}
34 34
 
35 35
 
@@ -41,8 +41,8 @@  discard block
 block discarded – undo
41 41
 	 * @return EE_Transaction
42 42
 	 * @throws \EE_Error
43 43
 	 */
44
-	public static function new_instance_from_db( $props_n_values = array(), $timezone = null ) {
45
-		return new self( $props_n_values, TRUE, $timezone );
44
+	public static function new_instance_from_db($props_n_values = array(), $timezone = null) {
45
+		return new self($props_n_values, TRUE, $timezone);
46 46
 	}
47 47
 
48 48
 
@@ -58,16 +58,16 @@  discard block
 block discarded – undo
58 58
 	 */
59 59
 	public function lock() {
60 60
 		// attempt to set lock, but if that fails...
61
-		if ( ! $this->add_extra_meta( 'lock', time(), true )  ) {
61
+		if ( ! $this->add_extra_meta('lock', time(), true)) {
62 62
 			// then attempt to remove the lock in case it is expired
63
-			if ( $this->_remove_expired_lock() ) {
63
+			if ($this->_remove_expired_lock()) {
64 64
 				// if removal was successful, then try setting lock again
65 65
 				$this->lock();
66 66
 			} else {
67 67
 				// but if the lock can not be removed, then throw an exception
68 68
 				throw new EE_Error(
69 69
 					sprintf(
70
-						__( 'Could not lock Transaction %1$d because it is already locked, meaning another part of the system is currently editing it. It should already be unlocked by the time you read this, so please refresh the page and try again.', 'event_espresso' ),
70
+						__('Could not lock Transaction %1$d because it is already locked, meaning another part of the system is currently editing it. It should already be unlocked by the time you read this, so please refresh the page and try again.', 'event_espresso'),
71 71
 						$this->ID()
72 72
 					)
73 73
 				);
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 	 * @throws \EE_Error
87 87
 	 */
88 88
 	public function unlock() {
89
-		return $this->delete_extra_meta( 'lock' );
89
+		return $this->delete_extra_meta('lock');
90 90
 	}
91 91
 
92 92
 
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
 	 */
108 108
 	public function is_locked() {
109 109
 		// if TXN is not locked, then return false immediately
110
-		if ( ! $this->_get_lock() ) {
110
+		if ( ! $this->_get_lock()) {
111 111
 			return false;
112 112
 		}
113 113
 		// if not, then let's try and remove the lock in case it's expired...
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 	 * @throws \EE_Error
129 129
 	 */
130 130
 	protected function _get_lock() {
131
-		return (int)$this->get_extra_meta( 'lock', true, 0 );
131
+		return (int) $this->get_extra_meta('lock', true, 0);
132 132
 	}
133 133
 
134 134
 
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
 	 */
144 144
 	protected function _remove_expired_lock() {
145 145
 		$locked = $this->_get_lock();
146
-		if ( $locked && time() - EE_Transaction::LOCK_EXPIRATION > $locked ) {
146
+		if ($locked && time() - EE_Transaction::LOCK_EXPIRATION > $locked) {
147 147
 			return $this->unlock();
148 148
 		}
149 149
 		return 0;
@@ -158,8 +158,8 @@  discard block
 block discarded – undo
158 158
 	 * @param        float $total total value of transaction
159 159
 	 * @throws \EE_Error
160 160
 	 */
161
-	public function set_total( $total = 0.00 ) {
162
-		$this->set( 'TXN_total', (float)$total );
161
+	public function set_total($total = 0.00) {
162
+		$this->set('TXN_total', (float) $total);
163 163
 	}
164 164
 
165 165
 
@@ -171,8 +171,8 @@  discard block
 block discarded – undo
171 171
 	 * @param        float $total_paid total amount paid to date (sum of all payments)
172 172
 	 * @throws \EE_Error
173 173
 	 */
174
-	public function set_paid( $total_paid = 0.00 ) {
175
-		$this->set( 'TXN_paid', (float)$total_paid );
174
+	public function set_paid($total_paid = 0.00) {
175
+		$this->set('TXN_paid', (float) $total_paid);
176 176
 	}
177 177
 
178 178
 
@@ -184,8 +184,8 @@  discard block
 block discarded – undo
184 184
 	 * @param        string $status whether the transaction is open, declined, accepted, or any number of custom values that can be set
185 185
 	 * @throws \EE_Error
186 186
 	 */
187
-	public function set_status( $status = '' ) {
188
-		$this->set( 'STS_ID', $status );
187
+	public function set_status($status = '') {
188
+		$this->set('STS_ID', $status);
189 189
 	}
190 190
 
191 191
 
@@ -197,8 +197,8 @@  discard block
 block discarded – undo
197 197
 	 * @param        string $hash_salt required for some payment gateways
198 198
 	 * @throws \EE_Error
199 199
 	 */
200
-	public function set_hash_salt( $hash_salt = '' ) {
201
-		$this->set( 'TXN_hash_salt', $hash_salt );
200
+	public function set_hash_salt($hash_salt = '') {
201
+		$this->set('TXN_hash_salt', $hash_salt);
202 202
 	}
203 203
 
204 204
 
@@ -209,8 +209,8 @@  discard block
 block discarded – undo
209 209
 	 * @param array $txn_reg_steps
210 210
 	 * @throws \EE_Error
211 211
 	 */
212
-	public function set_reg_steps( array $txn_reg_steps ) {
213
-		$this->set( 'TXN_reg_steps', $txn_reg_steps );
212
+	public function set_reg_steps(array $txn_reg_steps) {
213
+		$this->set('TXN_reg_steps', $txn_reg_steps);
214 214
 	}
215 215
 
216 216
 
@@ -222,8 +222,8 @@  discard block
 block discarded – undo
222 222
 	 * @throws \EE_Error
223 223
 	 */
224 224
 	public function reg_steps() {
225
-		$TXN_reg_steps = $this->get( 'TXN_reg_steps' );
226
-		return is_array( $TXN_reg_steps ) ? (array)$TXN_reg_steps : array();
225
+		$TXN_reg_steps = $this->get('TXN_reg_steps');
226
+		return is_array($TXN_reg_steps) ? (array) $TXN_reg_steps : array();
227 227
 	}
228 228
 
229 229
 
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
 	 * @throws \EE_Error
234 234
 	 */
235 235
 	public function pretty_total() {
236
-		return $this->get_pretty( 'TXN_total' );
236
+		return $this->get_pretty('TXN_total');
237 237
 	}
238 238
 
239 239
 
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
 	 * @throws \EE_Error
246 246
 	 */
247 247
 	public function pretty_paid() {
248
-		return $this->get_pretty( 'TXN_paid' );
248
+		return $this->get_pretty('TXN_paid');
249 249
 	}
250 250
 
251 251
 
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
 	 * @throws \EE_Error
259 259
 	 */
260 260
 	public function remaining() {
261
-		return (float)( $this->total() - $this->paid() );
261
+		return (float) ($this->total() - $this->paid());
262 262
 	}
263 263
 
264 264
 
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
 	 * @throws \EE_Error
272 272
 	 */
273 273
 	public function total() {
274
-		return (float)$this->get( 'TXN_total' );
274
+		return (float) $this->get('TXN_total');
275 275
 	}
276 276
 
277 277
 
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
 	 * @throws \EE_Error
285 285
 	 */
286 286
 	public function paid() {
287
-		return (float)$this->get( 'TXN_paid' );
287
+		return (float) $this->get('TXN_paid');
288 288
 	}
289 289
 
290 290
 
@@ -296,9 +296,9 @@  discard block
 block discarded – undo
296 296
 	 * @throws \EE_Error
297 297
 	 */
298 298
 	public function get_cart_session() {
299
-		$session_data = (array)$this->get( 'TXN_session_data' );
300
-		return isset( $session_data[ 'cart' ] ) && $session_data[ 'cart' ] instanceof EE_Cart
301
-			? $session_data[ 'cart' ]
299
+		$session_data = (array) $this->get('TXN_session_data');
300
+		return isset($session_data['cart']) && $session_data['cart'] instanceof EE_Cart
301
+			? $session_data['cart']
302 302
 			: null;
303 303
 	}
304 304
 
@@ -311,8 +311,8 @@  discard block
 block discarded – undo
311 311
 	 * @throws \EE_Error
312 312
 	 */
313 313
 	public function session_data() {
314
-		$session_data = $this->get( 'TXN_session_data' );
315
-		if ( empty( $session_data ) ) {
314
+		$session_data = $this->get('TXN_session_data');
315
+		if (empty($session_data)) {
316 316
 			$session_data = array(
317 317
 				'id'            => null,
318 318
 				'user_id'       => null,
@@ -335,11 +335,11 @@  discard block
 block discarded – undo
335 335
 	 * @param        EE_Session|array $session_data
336 336
 	 * @throws \EE_Error
337 337
 	 */
338
-	public function set_txn_session_data( $session_data ) {
339
-		if ( $session_data instanceof EE_Session ) {
340
-			$this->set( 'TXN_session_data', $session_data->get_session_data( NULL, TRUE ));
338
+	public function set_txn_session_data($session_data) {
339
+		if ($session_data instanceof EE_Session) {
340
+			$this->set('TXN_session_data', $session_data->get_session_data(NULL, TRUE));
341 341
 		} else {
342
-			$this->set( 'TXN_session_data', $session_data );
342
+			$this->set('TXN_session_data', $session_data);
343 343
 		}
344 344
 	}
345 345
 
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
 	 * @throws \EE_Error
353 353
 	 */
354 354
 	public function hash_salt_() {
355
-		return $this->get( 'TXN_hash_salt' );
355
+		return $this->get('TXN_hash_salt');
356 356
 	}
357 357
 
358 358
 
@@ -372,13 +372,13 @@  discard block
 block discarded – undo
372 372
 	 * @return    string | int
373 373
 	 * @throws \EE_Error
374 374
 	 */
375
-	public function datetime( $format = FALSE, $gmt = FALSE ) {
376
-		if ( $format ) {
377
-			return $this->get_pretty( 'TXN_timestamp' );
378
-		} else if ( $gmt ) {
379
-			return $this->get_raw( 'TXN_timestamp' );
375
+	public function datetime($format = FALSE, $gmt = FALSE) {
376
+		if ($format) {
377
+			return $this->get_pretty('TXN_timestamp');
378
+		} else if ($gmt) {
379
+			return $this->get_raw('TXN_timestamp');
380 380
 		} else {
381
-			return $this->get( 'TXN_timestamp' );
381
+			return $this->get('TXN_timestamp');
382 382
 		}
383 383
 	}
384 384
 
@@ -392,8 +392,8 @@  discard block
 block discarded – undo
392 392
 	 * @return EE_Registration[]
393 393
 	 * @throws \EE_Error
394 394
 	 */
395
-	public function registrations( $query_params = array(), $get_cached = FALSE ) {
396
-		$query_params = ( empty( $query_params ) || ! is_array( $query_params ) )
395
+	public function registrations($query_params = array(), $get_cached = FALSE) {
396
+		$query_params = (empty($query_params) || ! is_array($query_params))
397 397
 			? array(
398 398
 				'order_by' => array(
399 399
 					'Event.EVT_name' => 'ASC',
@@ -403,7 +403,7 @@  discard block
 block discarded – undo
403 403
 			)
404 404
 			: $query_params;
405 405
 		$query_params = $get_cached ? array() : $query_params;
406
-		return $this->get_many_related( 'Registration', $query_params );
406
+		return $this->get_many_related('Registration', $query_params);
407 407
 	}
408 408
 
409 409
 
@@ -416,7 +416,7 @@  discard block
 block discarded – undo
416 416
 	 * @throws \EE_Error
417 417
 	 */
418 418
 	public function attendees() {
419
-		return $this->get_many_related( 'Attendee', array( array( 'Registration.Transaction.TXN_ID' => $this->ID() ) ) );
419
+		return $this->get_many_related('Attendee', array(array('Registration.Transaction.TXN_ID' => $this->ID())));
420 420
 	}
421 421
 
422 422
 
@@ -428,8 +428,8 @@  discard block
 block discarded – undo
428 428
 	 * @return EE_Payment[]
429 429
 	 * @throws \EE_Error
430 430
 	 */
431
-	public function payments( $query_params = array() ) {
432
-		return $this->get_many_related( 'Payment', $query_params );
431
+	public function payments($query_params = array()) {
432
+		return $this->get_many_related('Payment', $query_params);
433 433
 	}
434 434
 
435 435
 
@@ -441,8 +441,8 @@  discard block
 block discarded – undo
441 441
 	 * @throws \EE_Error
442 442
 	 */
443 443
 	public function approved_payments() {
444
-		EE_Registry::instance()->load_model( 'Payment' );
445
-		return $this->get_many_related( 'Payment', array( array( 'STS_ID' => EEM_Payment::status_id_approved ), 'order_by' => array( 'PAY_timestamp' => 'DESC' ) ) );
444
+		EE_Registry::instance()->load_model('Payment');
445
+		return $this->get_many_related('Payment', array(array('STS_ID' => EEM_Payment::status_id_approved), 'order_by' => array('PAY_timestamp' => 'DESC')));
446 446
 	}
447 447
 
448 448
 
@@ -454,8 +454,8 @@  discard block
 block discarded – undo
454 454
 	 * @return string
455 455
 	 * @throws \EE_Error
456 456
 	 */
457
-	public function e_pretty_status( $show_icons = FALSE ) {
458
-		echo $this->pretty_status( $show_icons );
457
+	public function e_pretty_status($show_icons = FALSE) {
458
+		echo $this->pretty_status($show_icons);
459 459
 	}
460 460
 
461 461
 
@@ -467,10 +467,10 @@  discard block
 block discarded – undo
467 467
 	 * @return string
468 468
 	 * @throws \EE_Error
469 469
 	 */
470
-	public function pretty_status( $show_icons = FALSE ) {
471
-		$status = EEM_Status::instance()->localized_status( array( $this->status_ID() => __( 'unknown', 'event_espresso' ) ), FALSE, 'sentence' );
470
+	public function pretty_status($show_icons = FALSE) {
471
+		$status = EEM_Status::instance()->localized_status(array($this->status_ID() => __('unknown', 'event_espresso')), FALSE, 'sentence');
472 472
 		$icon = '';
473
-		switch ( $this->status_ID() ) {
473
+		switch ($this->status_ID()) {
474 474
 			case EEM_Transaction::complete_status_code:
475 475
 				$icon = $show_icons ? '<span class="dashicons dashicons-yes ee-icon-size-24 green-text"></span>' : '';
476 476
 				break;
@@ -487,7 +487,7 @@  discard block
 block discarded – undo
487 487
 				$icon = $show_icons ? '<span class="dashicons dashicons-plus ee-icon-size-16 orange-text"></span>' : '';
488 488
 				break;
489 489
 		}
490
-		return $icon . $status[ $this->status_ID() ];
490
+		return $icon.$status[$this->status_ID()];
491 491
 	}
492 492
 
493 493
 
@@ -499,7 +499,7 @@  discard block
 block discarded – undo
499 499
 	 * @throws \EE_Error
500 500
 	 */
501 501
 	public function status_ID() {
502
-		return $this->get( 'STS_ID' );
502
+		return $this->get('STS_ID');
503 503
 	}
504 504
 
505 505
 
@@ -511,7 +511,7 @@  discard block
 block discarded – undo
511 511
 	 * @throws \EE_Error
512 512
 	 */
513 513
 	public function is_free() {
514
-		return EEH_Money::compare_floats( $this->get( 'TXN_total' ), 0, '==' );
514
+		return EEH_Money::compare_floats($this->get('TXN_total'), 0, '==');
515 515
 	}
516 516
 
517 517
 
@@ -591,12 +591,12 @@  discard block
 block discarded – undo
591 591
 	 * @return string
592 592
 	 * @throws \EE_Error
593 593
 	 */
594
-	public function invoice_url( $type = 'html' ) {
594
+	public function invoice_url($type = 'html') {
595 595
 		$REG = $this->primary_registration();
596
-		if ( ! $REG instanceof EE_Registration ) {
596
+		if ( ! $REG instanceof EE_Registration) {
597 597
 			return '';
598 598
 		}
599
-		return $REG->invoice_url( $type );
599
+		return $REG->invoice_url($type);
600 600
 	}
601 601
 
602 602
 
@@ -608,7 +608,7 @@  discard block
 block discarded – undo
608 608
 	 * @throws \EE_Error
609 609
 	 */
610 610
 	public function primary_registration() {
611
-		return $this->get_first_related( 'Registration', array( array( 'REG_count' => EEM_Registration::PRIMARY_REGISTRANT_COUNT ) ) );
611
+		return $this->get_first_related('Registration', array(array('REG_count' => EEM_Registration::PRIMARY_REGISTRANT_COUNT)));
612 612
 	}
613 613
 
614 614
 
@@ -620,12 +620,12 @@  discard block
 block discarded – undo
620 620
 	 * @return string
621 621
 	 * @throws \EE_Error
622 622
 	 */
623
-	public function receipt_url( $type = 'html' ) {
623
+	public function receipt_url($type = 'html') {
624 624
 		$REG = $this->primary_registration();
625
-		if ( ! $REG instanceof EE_Registration ) {
625
+		if ( ! $REG instanceof EE_Registration) {
626 626
 			return '';
627 627
 		}
628
-		return $REG->receipt_url( $type );
628
+		return $REG->receipt_url($type);
629 629
 	}
630 630
 
631 631
 
@@ -650,7 +650,7 @@  discard block
 block discarded – undo
650 650
 	 * @throws \EE_Error
651 651
 	 */
652 652
 	public function gateway_response_on_transaction() {
653
-		$payment = $this->get_first_related( 'Payment' );
653
+		$payment = $this->get_first_related('Payment');
654 654
 		return $payment instanceof EE_Payment ? $payment->gateway_response() : '';
655 655
 	}
656 656
 
@@ -663,7 +663,7 @@  discard block
 block discarded – undo
663 663
 	 * @throws \EE_Error
664 664
 	 */
665 665
 	public function status_obj() {
666
-		return $this->get_first_related( 'Status' );
666
+		return $this->get_first_related('Status');
667 667
 	}
668 668
 
669 669
 
@@ -675,8 +675,8 @@  discard block
 block discarded – undo
675 675
 	 * @return EE_Extra_Meta
676 676
 	 * @throws \EE_Error
677 677
 	 */
678
-	public function extra_meta( $query_params = array() ) {
679
-		return $this->get_many_related( 'Extra_Meta', $query_params );
678
+	public function extra_meta($query_params = array()) {
679
+		return $this->get_many_related('Extra_Meta', $query_params);
680 680
 	}
681 681
 
682 682
 
@@ -688,8 +688,8 @@  discard block
 block discarded – undo
688 688
 	 * @return EE_Base_Class the relation was added to
689 689
 	 * @throws \EE_Error
690 690
 	 */
691
-	public function add_registration( EE_Registration $registration ) {
692
-		return $this->_add_relation_to( $registration, 'Registration' );
691
+	public function add_registration(EE_Registration $registration) {
692
+		return $this->_add_relation_to($registration, 'Registration');
693 693
 	}
694 694
 
695 695
 
@@ -702,8 +702,8 @@  discard block
 block discarded – undo
702 702
 	 * @return EE_Base_Class that was removed from being related
703 703
 	 * @throws \EE_Error
704 704
 	 */
705
-	public function remove_registration_with_id( $registration_or_id ) {
706
-		return $this->_remove_relation_to( $registration_or_id, 'Registration' );
705
+	public function remove_registration_with_id($registration_or_id) {
706
+		return $this->_remove_relation_to($registration_or_id, 'Registration');
707 707
 	}
708 708
 
709 709
 
@@ -715,7 +715,7 @@  discard block
 block discarded – undo
715 715
 	 * @throws \EE_Error
716 716
 	 */
717 717
 	public function items_purchased() {
718
-		return $this->line_items( array( array( 'LIN_type' => EEM_Line_Item::type_line_item ) ) );
718
+		return $this->line_items(array(array('LIN_type' => EEM_Line_Item::type_line_item)));
719 719
 	}
720 720
 
721 721
 
@@ -727,8 +727,8 @@  discard block
 block discarded – undo
727 727
 	 * @return EE_Base_Class the relation was added to
728 728
 	 * @throws \EE_Error
729 729
 	 */
730
-	public function add_line_item( EE_Line_Item $line_item ) {
731
-		return $this->_add_relation_to( $line_item, 'Line_Item' );
730
+	public function add_line_item(EE_Line_Item $line_item) {
731
+		return $this->_add_relation_to($line_item, 'Line_Item');
732 732
 	}
733 733
 
734 734
 
@@ -740,8 +740,8 @@  discard block
 block discarded – undo
740 740
 	 * @return EE_Line_Item[]
741 741
 	 * @throws \EE_Error
742 742
 	 */
743
-	public function line_items( $query_params = array() ) {
744
-		return $this->get_many_related( 'Line_Item', $query_params );
743
+	public function line_items($query_params = array()) {
744
+		return $this->get_many_related('Line_Item', $query_params);
745 745
 	}
746 746
 
747 747
 
@@ -753,7 +753,7 @@  discard block
 block discarded – undo
753 753
 	 * @throws \EE_Error
754 754
 	 */
755 755
 	public function tax_items() {
756
-		return $this->line_items( array( array( 'LIN_type' => EEM_Line_Item::type_tax ) ) );
756
+		return $this->line_items(array(array('LIN_type' => EEM_Line_Item::type_tax)));
757 757
 	}
758 758
 
759 759
 
@@ -766,9 +766,9 @@  discard block
 block discarded – undo
766 766
 	 * @throws \EE_Error
767 767
 	 */
768 768
 	public function total_line_item() {
769
-		$item =  $this->get_first_related( 'Line_Item', array( array( 'LIN_type' => EEM_Line_Item::type_total ) ) );
770
-		if( ! $item ){
771
-			$item = EEH_Line_Item::create_total_line_item( $this );
769
+		$item = $this->get_first_related('Line_Item', array(array('LIN_type' => EEM_Line_Item::type_total)));
770
+		if ( ! $item) {
771
+			$item = EEH_Line_Item::create_total_line_item($this);
772 772
 		}
773 773
 		return $item;
774 774
 	}
@@ -784,10 +784,10 @@  discard block
 block discarded – undo
784 784
 	 */
785 785
 	public function tax_total() {
786 786
 		$tax_line_item = $this->tax_total_line_item();
787
-		if ( $tax_line_item ) {
788
-			return (float)$tax_line_item->total();
787
+		if ($tax_line_item) {
788
+			return (float) $tax_line_item->total();
789 789
 		} else {
790
-			return (float)0;
790
+			return (float) 0;
791 791
 		}
792 792
 	}
793 793
 
@@ -800,7 +800,7 @@  discard block
 block discarded – undo
800 800
 	 * @throws \EE_Error
801 801
 	 */
802 802
 	public function tax_total_line_item() {
803
-		return EEH_Line_Item::get_taxes_subtotal( $this->total_line_item() );
803
+		return EEH_Line_Item::get_taxes_subtotal($this->total_line_item());
804 804
 	}
805 805
 
806 806
 
@@ -811,20 +811,20 @@  discard block
 block discarded – undo
811 811
 	 * @return EE_Form_Section_Proper
812 812
 	 * @throws \EE_Error
813 813
 	 */
814
-	public function billing_info(){
814
+	public function billing_info() {
815 815
 		$payment_method = $this->payment_method();
816
-		if ( !$payment_method){
816
+		if ( ! $payment_method) {
817 817
 			EE_Error::add_error(__("Could not find billing info for transaction because no gateway has been used for it yet", "event_espresso"), __FILE__, __FUNCTION__, __LINE__);
818 818
 			return false;
819 819
 		}
820 820
 		$primary_reg = $this->primary_registration();
821
-		if ( ! $primary_reg ) {
822
-			EE_Error::add_error( __( "Cannot get billing info for gateway %s on transaction because no primary registration exists", "event_espresso" ), __FILE__, __FUNCTION__, __LINE__ );
821
+		if ( ! $primary_reg) {
822
+			EE_Error::add_error(__("Cannot get billing info for gateway %s on transaction because no primary registration exists", "event_espresso"), __FILE__, __FUNCTION__, __LINE__);
823 823
 			return FALSE;
824 824
 		}
825 825
 		$attendee = $primary_reg->attendee();
826
-		if ( ! $attendee ) {
827
-			EE_Error::add_error( __( "Cannot get billing info for gateway %s on transaction because the primary registration has no attendee exists", "event_espresso" ), __FILE__, __FUNCTION__, __LINE__ );
826
+		if ( ! $attendee) {
827
+			EE_Error::add_error(__("Cannot get billing info for gateway %s on transaction because the primary registration has no attendee exists", "event_espresso"), __FILE__, __FUNCTION__, __LINE__);
828 828
 			return FALSE;
829 829
 		}
830 830
 		return $attendee->billing_info_for_payment_method($payment_method);
@@ -865,15 +865,15 @@  discard block
 block discarded – undo
865 865
 	 * @return EE_Payment_Method
866 866
 	 * @throws \EE_Error
867 867
 	 */
868
-	public function payment_method(){
868
+	public function payment_method() {
869 869
 		$pm = $this->get_first_related('Payment_Method');
870
-		if( $pm instanceof EE_Payment_Method ){
870
+		if ($pm instanceof EE_Payment_Method) {
871 871
 			return $pm;
872
-		}else{
872
+		} else {
873 873
 			$last_payment = $this->last_payment();
874
-			if( $last_payment instanceof EE_Payment && $last_payment->payment_method() ){
874
+			if ($last_payment instanceof EE_Payment && $last_payment->payment_method()) {
875 875
 				return $last_payment->payment_method();
876
-			}else{
876
+			} else {
877 877
 				return NULL;
878 878
 			}
879 879
 		}
@@ -888,7 +888,7 @@  discard block
 block discarded – undo
888 888
 	 * @throws \EE_Error
889 889
 	 */
890 890
 	public function last_payment() {
891
-		return $this->get_first_related( 'Payment', array( 'order_by' => array( 'PAY_ID' => 'desc' ) ) );
891
+		return $this->get_first_related('Payment', array('order_by' => array('PAY_ID' => 'desc')));
892 892
 	}
893 893
 
894 894
 
@@ -899,8 +899,8 @@  discard block
 block discarded – undo
899 899
 	 * @return EE_Line_Item[]
900 900
 	 * @throws \EE_Error
901 901
 	 */
902
-	public function non_ticket_line_items(){
903
-		return EEM_Line_Item::instance()->get_all_non_ticket_line_items_for_transaction( $this->ID() );
902
+	public function non_ticket_line_items() {
903
+		return EEM_Line_Item::instance()->get_all_non_ticket_line_items_for_transaction($this->ID());
904 904
 	}
905 905
 
906 906
 
@@ -948,7 +948,7 @@  discard block
 block discarded – undo
948 948
 	public function update_based_on_payments()
949 949
 	{
950 950
 		EE_Error::doing_it_wrong(
951
-			__CLASS__ . '::' . __FUNCTION__,
951
+			__CLASS__.'::'.__FUNCTION__,
952 952
 			sprintf(__('This method is deprecated. Please use "%s" instead', 'event_espresso'),
953 953
 				'EE_Transaction_Processor::update_transaction_and_registrations_after_checkout_or_payment()'),
954 954
 			'4.6.0'
Please login to merge, or discard this patch.