Completed
Branch DECAF-4.7 (a62460)
by
unknown
354:55 queued 341:48
created
core/db_classes/EE_Price_Type.class.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
 	 *
157 157
 	 * @since 4.5.0
158 158
 	 *
159
-	 * @return int
159
+	 * @return boolean
160 160
 	 */
161 161
 	public function wp_user() {
162 162
 		return $this->get('PRT_wp_user');
Please login to merge, or discard this patch.
Spacing   +22 added lines, -22 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_Price_Type
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_Price_Type
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,8 +55,8 @@  discard block
 block discarded – undo
55 55
 	 * @access        public
56 56
 	 * @param        string $PRT_name
57 57
 	 */
58
-	public function set_name( $PRT_name = '' ) {
59
-		$this->set( 'PRT_name', $PRT_name );
58
+	public function set_name($PRT_name = '') {
59
+		$this->set('PRT_name', $PRT_name);
60 60
 	}
61 61
 
62 62
 
@@ -67,8 +67,8 @@  discard block
 block discarded – undo
67 67
 	 * @access        public
68 68
 	 * @param        bool $PRT_is_percent
69 69
 	 */
70
-	public function set_is_percent( $PRT_is_percent = FALSE ) {
71
-		$this->set( 'PRT_is_percent', $PRT_is_percent );
70
+	public function set_is_percent($PRT_is_percent = FALSE) {
71
+		$this->set('PRT_is_percent', $PRT_is_percent);
72 72
 	}
73 73
 
74 74
 
@@ -79,8 +79,8 @@  discard block
 block discarded – undo
79 79
 	 * @access        public
80 80
 	 * @param        int $PRT_order
81 81
 	 */
82
-	public function set_order( $PRT_order = 0 ) {
83
-		$this->set( 'PRT_order', $PRT_order );
82
+	public function set_order($PRT_order = 0) {
83
+		$this->set('PRT_order', $PRT_order);
84 84
 	}
85 85
 
86 86
 
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 	 *
90 90
 	 */
91 91
 	public function move_to_trash() {
92
-		$this->set( 'PRT_deleted', TRUE );
92
+		$this->set('PRT_deleted', TRUE);
93 93
 	}
94 94
 
95 95
 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 	 *
99 99
 	 */
100 100
 	public function restore_from_trash() {
101
-		$this->set( 'PRT_deleted', FALSE );
101
+		$this->set('PRT_deleted', FALSE);
102 102
 	}
103 103
 
104 104
 
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 	 * @access        public
109 109
 	 */
110 110
 	public function name() {
111
-		return $this->get( 'PRT_name' );
111
+		return $this->get('PRT_name');
112 112
 	}
113 113
 
114 114
 
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 	 * @access        public
119 119
 	 */
120 120
 	public function base_type() {
121
-		return $this->get( 'PBT_ID' );
121
+		return $this->get('PBT_ID');
122 122
 	}
123 123
 
124 124
 
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
 	 * @return mixed
128 128
 	 */
129 129
 	public function base_type_name() {
130
-		return $this->get_pretty( 'PBT_ID' );
130
+		return $this->get_pretty('PBT_ID');
131 131
 	}
132 132
 
133 133
 
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 	 * @access        public
138 138
 	 */
139 139
 	public function is_percent() {
140
-		return $this->get( 'PRT_is_percent' );
140
+		return $this->get('PRT_is_percent');
141 141
 	}
142 142
 
143 143
 
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
 	 * @return bool
147 147
 	 */
148 148
 	public function is_discount() {
149
-		return $this->get( 'PBT_ID' ) == 2 ? TRUE : FALSE;
149
+		return $this->get('PBT_ID') == 2 ? TRUE : FALSE;
150 150
 	}
151 151
 
152 152
 
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 	 * @access        public
170 170
 	 */
171 171
 	public function order() {
172
-		return $this->get( 'PRT_order' );
172
+		return $this->get('PRT_order');
173 173
 	}
174 174
 
175 175
 
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 	 * @access        public
180 180
 	 */
181 181
 	public function deleted() {
182
-		return $this->get( 'PRT_deleted' );
182
+		return $this->get('PRT_deleted');
183 183
 	}
184 184
 }
185 185
 
Please login to merge, or discard this patch.
core/db_classes/EE_Question_Form_Input.class.php 2 patches
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
 	 *        generate_question_form_inputs_for_object
227 227
 	 *
228 228
 	 * @access    protected
229
-	 * @param bool|object $object $object
229
+	 * @param EE_Base_Class|null $object $object
230 230
 	 * @param    array    $input_types
231 231
 	 * @return        array
232 232
 	 */
@@ -324,7 +324,7 @@  discard block
 block discarded – undo
324 324
 	 *    add_temp_option
325 325
 	 * @access public
326 326
 	 * @param \EE_Question_Option $QSO EE_Question_Option
327
-	 * @return boolean
327
+	 * @return boolean|null
328 328
 	 */
329 329
 	public function add_temp_option( EE_Question_Option $QSO ) {
330 330
 		$this->_QST->add_temp_option( $QSO );
@@ -336,8 +336,8 @@  discard block
 block discarded – undo
336 336
 	 * set property values for question form input
337 337
 	 * @access public
338 338
 	 * @param    string $property
339
-	 * @param    mixed  $value
340
-	 * @return mixed
339
+	 * @param    boolean  $value
340
+	 * @return boolean|null
341 341
 	 */
342 342
 	public function set( $property = NULL, $value = NULL ) {
343 343
 		if ( ! empty( $property ) ) {
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
 	/**
377 377
 	 *    get_meta
378 378
 	 * @access public
379
-	 * @param mixed $key
379
+	 * @param string $key
380 380
 	 * @return mixed
381 381
 	 */
382 382
 	public function get_meta( $key = FALSE ) {
Please login to merge, or discard this patch.
Spacing   +76 added lines, -76 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
@@ -82,14 +82,14 @@  discard block
 block discarded – undo
82 82
 	 * @access public
83 83
 	 * @return \EE_Question_Form_Input
84 84
 	 */
85
-	public function __construct( EE_Question $QST = NULL, EE_Answer $ANS = NULL, $q_meta = array() ) {
86
-		if ( empty( $QST ) || empty( $ANS ) ) {
87
-			EE_Error::add_error( __( 'An error occurred. A valid EE_Question or EE_Answer object was not received.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ );
85
+	public function __construct(EE_Question $QST = NULL, EE_Answer $ANS = NULL, $q_meta = array()) {
86
+		if (empty($QST) || empty($ANS)) {
87
+			EE_Error::add_error(__('An error occurred. A valid EE_Question or EE_Answer object was not received.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__);
88 88
 			return NULL;
89 89
 		}
90 90
 		$this->_QST = $QST;
91 91
 		$this->_ANS = $ANS;
92
-		$this->set_question_form_input_meta( $q_meta );
92
+		$this->set_question_form_input_meta($q_meta);
93 93
 		$this->set_question_form_input_init();
94 94
 	}
95 95
 
@@ -101,9 +101,9 @@  discard block
 block discarded – undo
101 101
 	 * @param array $q_meta
102 102
 	 * @return void
103 103
 	 */
104
-	public function set_question_form_input_meta( $q_meta = array() ) {
105
-		$default_q_meta = array( 'att_nmbr' => 1, 'ticket_id' => '', 'date' => '', 'time' => '', 'input_name' => '', 'input_id' => '', 'input_class' => '', 'input_prefix' => 'qstn', 'append_qstn_id' => TRUE, 'htmlentities' => TRUE, 'allow_null' => FALSE );
106
-		$this->_QST_meta = array_merge( $default_q_meta, $q_meta );
104
+	public function set_question_form_input_meta($q_meta = array()) {
105
+		$default_q_meta = array('att_nmbr' => 1, 'ticket_id' => '', 'date' => '', 'time' => '', 'input_name' => '', 'input_id' => '', 'input_class' => '', 'input_prefix' => 'qstn', 'append_qstn_id' => TRUE, 'htmlentities' => TRUE, 'allow_null' => FALSE);
106
+		$this->_QST_meta = array_merge($default_q_meta, $q_meta);
107 107
 	}
108 108
 
109 109
 
@@ -115,10 +115,10 @@  discard block
 block discarded – undo
115 115
 	 */
116 116
 	public function set_question_form_input_init() {
117 117
 		$qstn_id = $this->_QST->system_ID() ? $this->_QST->system_ID() : $this->_QST->ID();
118
-		$this->_set_input_name( $qstn_id );
119
-		$this->_set_input_id( $qstn_id );
120
-		$this->_set_input_class( $qstn_id );
121
-		$this->set_question_form_input_answer( $qstn_id );
118
+		$this->_set_input_name($qstn_id);
119
+		$this->_set_input_id($qstn_id);
120
+		$this->_set_input_class($qstn_id);
121
+		$this->set_question_form_input_answer($qstn_id);
122 122
 	}
123 123
 
124 124
 
@@ -129,12 +129,12 @@  discard block
 block discarded – undo
129 129
 	 * @param $qstn_id
130 130
 	 * @return void
131 131
 	 */
132
-	private function _set_input_name( $qstn_id ) {
133
-		if ( ! empty( $qstn_id ) ) {
134
-			$ANS_ID = $this->get( 'ANS_ID' );
135
-			$qstn_id = ! empty( $ANS_ID ) ? '[' . $qstn_id . '][' . $ANS_ID . ']' : '[' . $qstn_id . ']';
132
+	private function _set_input_name($qstn_id) {
133
+		if ( ! empty($qstn_id)) {
134
+			$ANS_ID = $this->get('ANS_ID');
135
+			$qstn_id = ! empty($ANS_ID) ? '['.$qstn_id.']['.$ANS_ID.']' : '['.$qstn_id.']';
136 136
 		}
137
-		$this->QST_input_name = $this->_QST_meta[ 'append_qstn_id' ] && ! empty( $qstn_id ) ? $this->_QST_meta[ 'input_prefix' ] . $this->_QST_meta[ 'input_name' ] . $qstn_id : $this->_QST_meta[ 'input_prefix' ] . $this->_QST_meta[ 'input_name' ];
137
+		$this->QST_input_name = $this->_QST_meta['append_qstn_id'] && ! empty($qstn_id) ? $this->_QST_meta['input_prefix'].$this->_QST_meta['input_name'].$qstn_id : $this->_QST_meta['input_prefix'].$this->_QST_meta['input_name'];
138 138
 	}
139 139
 
140 140
 
@@ -145,13 +145,13 @@  discard block
 block discarded – undo
145 145
 	 * @param    string $property
146 146
 	 * @return mixed
147 147
 	 */
148
-	public function get( $property = NULL ) {
149
-		if ( ! empty( $property ) ) {
150
-			if ( EEM_Question::instance()->has_field( $property ) ) {
151
-				return $this->_QST->get( $property );
152
-			} else if ( EEM_Answer::instance()->has_field( $property ) ) {
153
-				return $this->_ANS->get( $property );
154
-			} else if ( $this->_question_form_input_property_exists( __CLASS__, $property ) ) {
148
+	public function get($property = NULL) {
149
+		if ( ! empty($property)) {
150
+			if (EEM_Question::instance()->has_field($property)) {
151
+				return $this->_QST->get($property);
152
+			} else if (EEM_Answer::instance()->has_field($property)) {
153
+				return $this->_ANS->get($property);
154
+			} else if ($this->_question_form_input_property_exists(__CLASS__, $property)) {
155 155
 				return $this->{$property};
156 156
 			}
157 157
 		}
@@ -167,13 +167,13 @@  discard block
 block discarded – undo
167 167
 	 * @param    string $property
168 168
 	 * @return boolean
169 169
 	 */
170
-	private function _question_form_input_property_exists( $classname, $property ) {
170
+	private function _question_form_input_property_exists($classname, $property) {
171 171
 		// first try regular property exists method which works as expected in PHP 5.3+
172
-		$prop = EEH_Class_Tools::has_property( $classname, $property );
173
-		if ( ! $prop ) {
172
+		$prop = EEH_Class_Tools::has_property($classname, $property);
173
+		if ( ! $prop) {
174 174
 			// use reflection for < PHP 5.3 as a double check when property is not found, possible due to access restriction
175
-			$reflector = new ReflectionClass( $classname );
176
-			$prop = $reflector->hasProperty( $property );
175
+			$reflector = new ReflectionClass($classname);
176
+			$prop = $reflector->hasProperty($property);
177 177
 		}
178 178
 		return $prop;
179 179
 	}
@@ -186,9 +186,9 @@  discard block
 block discarded – undo
186 186
 	 * @param $qstn_id
187 187
 	 * @return void
188 188
 	 */
189
-	private function _set_input_id( $qstn_id ) {
190
-		$input_id = isset( $this->_QST_meta[ 'input_id' ] ) && ! empty( $this->_QST_meta[ 'input_id' ] ) ? $this->_QST_meta[ 'input_id' ] : sanitize_key( strip_tags( $this->_QST->get( 'QST_display_text' ) ) );
191
-		$this->QST_input_id = $this->_QST_meta[ 'append_qstn_id' ] && ! empty( $qstn_id ) ? $input_id . '-' . $qstn_id : $input_id;
189
+	private function _set_input_id($qstn_id) {
190
+		$input_id = isset($this->_QST_meta['input_id']) && ! empty($this->_QST_meta['input_id']) ? $this->_QST_meta['input_id'] : sanitize_key(strip_tags($this->_QST->get('QST_display_text')));
191
+		$this->QST_input_id = $this->_QST_meta['append_qstn_id'] && ! empty($qstn_id) ? $input_id.'-'.$qstn_id : $input_id;
192 192
 	}
193 193
 
194 194
 
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
 	 * @return void
200 200
 	 */
201 201
 	private function _set_input_class() {
202
-		$this->QST_input_class = isset( $this->_QST_meta[ 'input_class' ] ) ? $this->_QST_meta[ 'input_class' ] : '';
202
+		$this->QST_input_class = isset($this->_QST_meta['input_class']) ? $this->_QST_meta['input_class'] : '';
203 203
 	}
204 204
 
205 205
 
@@ -210,12 +210,12 @@  discard block
 block discarded – undo
210 210
 	 * @param mixed    int | string    $qstn_id
211 211
 	 * @return void
212 212
 	 */
213
-	public function set_question_form_input_answer( $qstn_id ) {
213
+	public function set_question_form_input_answer($qstn_id) {
214 214
 		// check for answer in $_REQUEST in case we are reprocessing a form after an error
215
-		if ( isset( $this->_QST_meta[ 'EVT_ID' ] ) && isset( $this->_QST_meta[ 'att_nmbr' ] ) && isset( $this->_QST_meta[ 'date' ] ) && isset( $this->_QST_meta[ 'time' ] ) && isset( $this->_QST_meta[ 'price_id' ] ) ) {
216
-			if ( isset( $_REQUEST[ 'qstn' ][ $this->_QST_meta[ 'EVT_ID' ] ][ $this->_QST_meta[ 'att_nmbr' ] ][ $this->_QST_meta[ 'date' ] ][ $this->_QST_meta[ 'time' ] ][ $this->_QST_meta[ 'price_id' ] ][ $qstn_id ] ) ) {
217
-				$answer = $_REQUEST[ 'qstn' ][ $this->_QST_meta[ 'EVT_ID' ] ][ $this->_QST_meta[ 'att_nmbr' ] ][ $this->_QST_meta[ 'date' ] ][ $this->_QST_meta[ 'time' ] ][ $this->_QST_meta[ 'price_id' ] ][ $qstn_id ];
218
-				$this->_ANS->set( 'ANS_value', $answer );
215
+		if (isset($this->_QST_meta['EVT_ID']) && isset($this->_QST_meta['att_nmbr']) && isset($this->_QST_meta['date']) && isset($this->_QST_meta['time']) && isset($this->_QST_meta['price_id'])) {
216
+			if (isset($_REQUEST['qstn'][$this->_QST_meta['EVT_ID']][$this->_QST_meta['att_nmbr']][$this->_QST_meta['date']][$this->_QST_meta['time']][$this->_QST_meta['price_id']][$qstn_id])) {
217
+				$answer = $_REQUEST['qstn'][$this->_QST_meta['EVT_ID']][$this->_QST_meta['att_nmbr']][$this->_QST_meta['date']][$this->_QST_meta['time']][$this->_QST_meta['price_id']][$qstn_id];
218
+				$this->_ANS->set('ANS_value', $answer);
219 219
 			}
220 220
 		}
221 221
 	}
@@ -230,40 +230,40 @@  discard block
 block discarded – undo
230 230
 	 * @param    array    $input_types
231 231
 	 * @return        array
232 232
 	 */
233
-	static function generate_question_form_inputs_for_object( $object = FALSE, $input_types = array() ) {
234
-		if ( ! is_object( $object ) ) {
233
+	static function generate_question_form_inputs_for_object($object = FALSE, $input_types = array()) {
234
+		if ( ! is_object($object)) {
235 235
 			return FALSE;
236 236
 		}
237 237
 		$inputs = array();
238
-		$fields = $object->get_model()->field_settings( FALSE );
238
+		$fields = $object->get_model()->field_settings(FALSE);
239 239
 		//		$pk = $object->ID(); <<< NO!
240 240
 		//		EEH_Debug_Tools::printr( $object, get_class( $object ) . '<br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' );
241 241
 		//		EEH_Debug_Tools::printr( $fields, '$fields  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' );
242 242
 		//		EEH_Debug_Tools::printr( $input_types, '$input_types  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' );
243
-		foreach ( $fields as $field_ID => $field ) {
244
-			if ( $field instanceof EE_Model_Field_Base ) {
243
+		foreach ($fields as $field_ID => $field) {
244
+			if ($field instanceof EE_Model_Field_Base) {
245 245
 				//			echo '<h4>$field_ID : ' . $field_ID . '  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span></h4>';
246 246
 				//			EEH_Debug_Tools::printr( $field, '$field  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' );
247
-				if ( isset( $input_types[ $field_ID ] ) ) {
247
+				if (isset($input_types[$field_ID])) {
248 248
 					// get saved value for field
249
-					$value = $object->get( $field_ID );
249
+					$value = $object->get($field_ID);
250 250
 					//				echo '<h4>$value : ' . $value . '  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span></h4>';
251 251
 					// if no saved value, then use default
252 252
 					$value = $value !== NULL ? $value : $field->get_default_value();
253 253
 					//			if ( $field_ID == 'CNT_active' )
254 254
 					//				echo '<h4>$value : ' . $value . '  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span></h4>';
255 255
 					// determine question type
256
-					$type = isset( $input_types[ $field_ID ] ) ? $input_types[ $field_ID ][ 'type' ] : 'TEXT';
256
+					$type = isset($input_types[$field_ID]) ? $input_types[$field_ID]['type'] : 'TEXT';
257 257
 					// input name
258
-					$input_name = isset( $input_types[ $field_ID ] ) && isset( $input_types[ $field_ID ][ 'input_name' ] ) ? $input_types[ $field_ID ][ 'input_name' ] . '[' . $field_ID . ']' : $field_ID;
258
+					$input_name = isset($input_types[$field_ID]) && isset($input_types[$field_ID]['input_name']) ? $input_types[$field_ID]['input_name'].'['.$field_ID.']' : $field_ID;
259 259
 					// css class for input
260
-					$class = isset( $input_types[ $field_ID ][ 'class' ] ) && ! empty( $input_types[ $field_ID ][ 'class' ] ) ? ' ' . $input_types[ $field_ID ][ 'class' ] : '';
260
+					$class = isset($input_types[$field_ID]['class']) && ! empty($input_types[$field_ID]['class']) ? ' '.$input_types[$field_ID]['class'] : '';
261 261
 					// whether to apply htmlentities to answer
262
-					$htmlentities = isset( $input_types[ $field_ID ][ 'htmlentities' ] ) ? $input_types[ $field_ID ][ 'htmlentities' ] : TRUE;
262
+					$htmlentities = isset($input_types[$field_ID]['htmlentities']) ? $input_types[$field_ID]['htmlentities'] : TRUE;
263 263
 					// whether to apply htmlentities to answer
264
-					$label_b4 = isset( $input_types[ $field_ID ][ 'label_b4' ] ) ? $input_types[ $field_ID ][ 'label_b4' ] : FALSE;
264
+					$label_b4 = isset($input_types[$field_ID]['label_b4']) ? $input_types[$field_ID]['label_b4'] : FALSE;
265 265
 					// whether to apply htmlentities to answer
266
-					$use_desc_4_label = isset( $input_types[ $field_ID ][ 'use_desc_4_label' ] ) ? $input_types[ $field_ID ][ 'use_desc_4_label' ] : FALSE;
266
+					$use_desc_4_label = isset($input_types[$field_ID]['use_desc_4_label']) ? $input_types[$field_ID]['use_desc_4_label'] : FALSE;
267 267
 
268 268
 					// create EE_Question_Form_Input object
269 269
 					$QFI = new EE_Question_Form_Input(
@@ -283,9 +283,9 @@  discard block
 block discarded – undo
283 283
 							)
284 284
 						),
285 285
 						array(
286
-							'input_id' => $field_ID . '-' . $object->ID(),
286
+							'input_id' => $field_ID.'-'.$object->ID(),
287 287
 							'input_name' => $input_name,
288
-							'input_class' => $field_ID . $class,
288
+							'input_class' => $field_ID.$class,
289 289
 							'input_prefix' => '',
290 290
 							'append_qstn_id' => FALSE,
291 291
 							'htmlentities' => $htmlentities,
@@ -294,21 +294,21 @@  discard block
 block discarded – undo
294 294
 						)
295 295
 					);
296 296
 					// does question type have options ?
297
-					if ( in_array( $type, array( 'DROPDOWN', 'RADIO_BTN', 'CHECKBOX' ) ) && isset ( $input_types[ $field_ID ] ) && isset ( $input_types[ $field_ID ][ 'options' ] ) ) {
298
-						foreach ( $input_types[ $field_ID ][ 'options' ] as $option ) {
299
-							$option = stripslashes_deep( $option );
300
-							$option_id = ! empty( $option[ 'id' ] ) ? $option[ 'id' ] : 0;
301
-							$QSO = EE_Question_Option::new_instance( array( 'QSO_value' => (string)$option_id, 'QSO_desc' => $option[ 'text' ], 'QSO_deleted' => FALSE ) );
297
+					if (in_array($type, array('DROPDOWN', 'RADIO_BTN', 'CHECKBOX')) && isset ($input_types[$field_ID]) && isset ($input_types[$field_ID]['options'])) {
298
+						foreach ($input_types[$field_ID]['options'] as $option) {
299
+							$option = stripslashes_deep($option);
300
+							$option_id = ! empty($option['id']) ? $option['id'] : 0;
301
+							$QSO = EE_Question_Option::new_instance(array('QSO_value' => (string) $option_id, 'QSO_desc' => $option['text'], 'QSO_deleted' => FALSE));
302 302
 							// all QST (and ANS) properties can be accessed indirectly thru QFI
303
-							$QFI->add_temp_option( $QSO );
303
+							$QFI->add_temp_option($QSO);
304 304
 						}
305 305
 					}
306 306
 					// we don't want ppl manually changing primary keys cuz that would just lead to total craziness man
307
-					if ( $field_ID == $object->get_model()->primary_key_name() ) {
308
-						$QFI->set( 'QST_disabled', TRUE );
307
+					if ($field_ID == $object->get_model()->primary_key_name()) {
308
+						$QFI->set('QST_disabled', TRUE);
309 309
 					}
310 310
 					//EEH_Debug_Tools::printr( $QFI, '$QFI  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' );
311
-					$inputs[ $field_ID ] = $QFI;
311
+					$inputs[$field_ID] = $QFI;
312 312
 					//			if ( $field_ID == 'CNT_active' ) {
313 313
 					//				EEH_Debug_Tools::printr( $QFI, '$QFI  <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' );
314 314
 					//			}
@@ -326,8 +326,8 @@  discard block
 block discarded – undo
326 326
 	 * @param \EE_Question_Option $QSO EE_Question_Option
327 327
 	 * @return boolean
328 328
 	 */
329
-	public function add_temp_option( EE_Question_Option $QSO ) {
330
-		$this->_QST->add_temp_option( $QSO );
329
+	public function add_temp_option(EE_Question_Option $QSO) {
330
+		$this->_QST->add_temp_option($QSO);
331 331
 	}
332 332
 
333 333
 
@@ -339,13 +339,13 @@  discard block
 block discarded – undo
339 339
 	 * @param    mixed  $value
340 340
 	 * @return mixed
341 341
 	 */
342
-	public function set( $property = NULL, $value = NULL ) {
343
-		if ( ! empty( $property ) ) {
344
-			if ( EEM_Question::instance()->has_field( $property ) ) {
345
-				$this->_QST->set( $property, $value );
346
-			} else if ( EEM_Answer::instance()->has_field( $property ) ) {
347
-				$this->_ANS->set( $property, $value );
348
-			} else if ( $this->_question_form_input_property_exists( __CLASS__, $property ) ) {
342
+	public function set($property = NULL, $value = NULL) {
343
+		if ( ! empty($property)) {
344
+			if (EEM_Question::instance()->has_field($property)) {
345
+				$this->_QST->set($property, $value);
346
+			} else if (EEM_Answer::instance()->has_field($property)) {
347
+				$this->_ANS->set($property, $value);
348
+			} else if ($this->_question_form_input_property_exists(__CLASS__, $property)) {
349 349
 				echo "<hr>$property is a prop of QFI";
350 350
 				$this->{$property} = $value;
351 351
 				return TRUE;
@@ -366,9 +366,9 @@  discard block
 block discarded – undo
366 366
 	 *                                                       whether it was trashed or not.
367 367
 	 * @return EE_Question_Option
368 368
 	 */
369
-	public function options( $notDeletedOptionsOnly = TRUE, $selected_value_to_always_include = NULL ) {
369
+	public function options($notDeletedOptionsOnly = TRUE, $selected_value_to_always_include = NULL) {
370 370
 		$temp_options = $this->_QST->temp_options();
371
-		return ! empty( $temp_options ) ? $temp_options : $this->_QST->options( $notDeletedOptionsOnly, $selected_value_to_always_include );
371
+		return ! empty($temp_options) ? $temp_options : $this->_QST->options($notDeletedOptionsOnly, $selected_value_to_always_include);
372 372
 	}
373 373
 
374 374
 
@@ -379,8 +379,8 @@  discard block
 block discarded – undo
379 379
 	 * @param mixed $key
380 380
 	 * @return mixed
381 381
 	 */
382
-	public function get_meta( $key = FALSE ) {
383
-		return $key && isset( $this->_QST_meta[ $key ] ) ? $this->_QST_meta[ $key ] : FALSE;
382
+	public function get_meta($key = FALSE) {
383
+		return $key && isset($this->_QST_meta[$key]) ? $this->_QST_meta[$key] : FALSE;
384 384
 	}
385 385
 
386 386
 
Please login to merge, or discard this patch.
core/db_classes/EE_Question_Group.class.php 3 patches
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 	/**
66 66
 	 * Gets the question group's internal name
67 67
 	 * @access public
68
-	 * @return string
68
+	 * @return boolean
69 69
 	 */
70 70
 	public function identifier() {
71 71
 		return $this->get( 'QSG_identifier' );
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 	 * Gets the question group's order number in a sequence
90 90
 	 * of other question groups
91 91
 	 * @access public
92
-	 * @return int
92
+	 * @return boolean
93 93
 	 */
94 94
 	public function order() {
95 95
 		return $this->get( 'QSG_order' );
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 	 *
139 139
 	 * @since 4.5.0
140 140
 	 *
141
-	 * @return int
141
+	 * @return boolean
142 142
 	 */
143 143
 	public function wp_user() {
144 144
 		return $this->get('QSG_wp_user');
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
 	/**
214 214
 	 * Adds the question to this question group
215 215
 	 * @param EE_Question || int $question object or ID
216
-	 * @return boolean if successful
216
+	 * @return EE_Base_Class if successful
217 217
 	 */
218 218
 	public function add_question( $questionObjectOrID ) {
219 219
 		return $this->_add_relation_to( $questionObjectOrID, 'Question' );
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
 	/**
225 225
 	 * Removes the question from this question group
226 226
 	 * @param EE_Question || int $question object or ID
227
-	 * @return boolean of success
227
+	 * @return EE_Base_Class of success
228 228
 	 */
229 229
 	public function remove_question( $questionObjectOrID ) {
230 230
 		return $this->_remove_relation_to( $questionObjectOrID, 'Question' );
Please login to merge, or discard this patch.
Spacing   +40 added lines, -40 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_Question_Group|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_Question_Group
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,8 +55,8 @@  discard block
 block discarded – undo
55 55
 	 * @param bool $pretty
56 56
 	 * @return string
57 57
 	 */
58
-	public function name( $pretty = FALSE ) {
59
-		return $pretty ? $this->get_pretty( 'QSG_name' ) : $this->get( 'QSG_name' );
58
+	public function name($pretty = FALSE) {
59
+		return $pretty ? $this->get_pretty('QSG_name') : $this->get('QSG_name');
60 60
 	}
61 61
 
62 62
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 	 * @return string
69 69
 	 */
70 70
 	public function identifier() {
71
-		return $this->get( 'QSG_identifier' );
71
+		return $this->get('QSG_identifier');
72 72
 	}
73 73
 
74 74
 
@@ -79,8 +79,8 @@  discard block
 block discarded – undo
79 79
 	 * @param bool $pretty
80 80
 	 * @return string
81 81
 	 */
82
-	public function desc( $pretty = FALSE ) {
83
-		return $pretty ? $this->get_pretty( 'QSG_desc' ) : $this->get( 'QSG_desc' );
82
+	public function desc($pretty = FALSE) {
83
+		return $pretty ? $this->get_pretty('QSG_desc') : $this->get('QSG_desc');
84 84
 	}
85 85
 
86 86
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
 	 * @return int
93 93
 	 */
94 94
 	public function order() {
95
-		return $this->get( 'QSG_order' );
95
+		return $this->get('QSG_order');
96 96
 	}
97 97
 
98 98
 
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 	 * @return boolean
104 104
 	 */
105 105
 	public function show_group_name() {
106
-		return $this->get( 'QSG_show_group_name' );
106
+		return $this->get('QSG_show_group_name');
107 107
 	}
108 108
 
109 109
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 	 * @return boolean
116 116
 	 */
117 117
 	public function show_group_desc() {
118
-		return $this->get( 'QSG_show_group_desc' );
118
+		return $this->get('QSG_show_group_desc');
119 119
 	}
120 120
 
121 121
 
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 	 * @return boolean
129 129
 	 */
130 130
 	public function system_group() {
131
-		return $this->get( 'QSG_system' );
131
+		return $this->get('QSG_system');
132 132
 	}
133 133
 
134 134
 
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
 	 * @return boolean
154 154
 	 */
155 155
 	public function deleted() {
156
-		return $this->get( 'QST_deleted' );
156
+		return $this->get('QST_deleted');
157 157
 	}
158 158
 
159 159
 
@@ -164,8 +164,8 @@  discard block
 block discarded – undo
164 164
 	 */
165 165
 	public function questions_in_and_not_in_group() {
166 166
 		$questions_in_group = $this->questions();
167
-		$exclude_question_ids = ! empty( $questions_in_group ) ? array_keys( $questions_in_group ) : array();
168
-		$questions_not_in_group = $this->questions_not_in_group( $exclude_question_ids );
167
+		$exclude_question_ids = ! empty($questions_in_group) ? array_keys($questions_in_group) : array();
168
+		$questions_not_in_group = $this->questions_not_in_group($exclude_question_ids);
169 169
 		return $questions_in_group + $questions_not_in_group;
170 170
 	}
171 171
 
@@ -176,9 +176,9 @@  discard block
 block discarded – undo
176 176
 	 * @param array $query_params
177 177
 	 * @return EE_Question[]
178 178
 	 */
179
-	public function questions( $query_params = array() ) {
180
-		$query_params = ! empty( $query_params ) ? $query_params : array( 'order_by' => array( 'Question_Group_Question.QGQ_order' => 'ASC' ) );
181
-		return $this->ID() ? $this->get_many_related( 'Question', $query_params ) : array();
179
+	public function questions($query_params = array()) {
180
+		$query_params = ! empty($query_params) ? $query_params : array('order_by' => array('Question_Group_Question.QGQ_order' => 'ASC'));
181
+		return $this->ID() ? $this->get_many_related('Question', $query_params) : array();
182 182
 	}
183 183
 
184 184
 
@@ -188,14 +188,14 @@  discard block
 block discarded – undo
188 188
 	 * @param  mixed $question_IDS_in_group if empty array then all questions returned.  if FALSE then we first get questions in this group and exclude them from questions get all. IF empty array then we just return all questions.
189 189
 	 * @return EE_Question[]
190 190
 	 */
191
-	public function questions_not_in_group( $question_IDS_in_group = FALSE ) {
192
-		if ( $question_IDS_in_group === FALSE ) {
191
+	public function questions_not_in_group($question_IDS_in_group = FALSE) {
192
+		if ($question_IDS_in_group === FALSE) {
193 193
 			$questions = $this->questions();
194
-			$question_IDS_in_group = ! empty( $questions ) ? array_keys( $questions ) : array();
194
+			$question_IDS_in_group = ! empty($questions) ? array_keys($questions) : array();
195 195
 		}
196
-		$_where = ! empty( $question_IDS_in_group ) ? array( 'QST_ID' => array( 'not_in', $question_IDS_in_group ) ) : array();
196
+		$_where = ! empty($question_IDS_in_group) ? array('QST_ID' => array('not_in', $question_IDS_in_group)) : array();
197 197
 
198
-		return EEM_Question::instance()->get_all( array( $_where, 'order_by' => array( 'QST_ID' => 'ASC' ) ) );
198
+		return EEM_Question::instance()->get_all(array($_where, 'order_by' => array('QST_ID' => 'ASC')));
199 199
 	}
200 200
 
201 201
 
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
 	 * @return EE_Event[]
206 206
 	 */
207 207
 	public function events() {
208
-		return $this->get_many_related( 'Event' );
208
+		return $this->get_many_related('Event');
209 209
 	}
210 210
 
211 211
 
@@ -215,8 +215,8 @@  discard block
 block discarded – undo
215 215
 	 * @param EE_Question || int $question object or ID
216 216
 	 * @return boolean if successful
217 217
 	 */
218
-	public function add_question( $questionObjectOrID ) {
219
-		return $this->_add_relation_to( $questionObjectOrID, 'Question' );
218
+	public function add_question($questionObjectOrID) {
219
+		return $this->_add_relation_to($questionObjectOrID, 'Question');
220 220
 	}
221 221
 
222 222
 
@@ -226,8 +226,8 @@  discard block
 block discarded – undo
226 226
 	 * @param EE_Question || int $question object or ID
227 227
 	 * @return boolean of success
228 228
 	 */
229
-	public function remove_question( $questionObjectOrID ) {
230
-		return $this->_remove_relation_to( $questionObjectOrID, 'Question' );
229
+	public function remove_question($questionObjectOrID) {
230
+		return $this->_remove_relation_to($questionObjectOrID, 'Question');
231 231
 	}
232 232
 
233 233
 
@@ -237,9 +237,9 @@  discard block
 block discarded – undo
237 237
 	 * @param $qst_order
238 238
 	 * @return int
239 239
 	 */
240
-	public function update_question_order( $questionObjectOrID, $qst_order ) {
241
-		$qst_ID = $questionObjectOrID instanceof EE_Question ? $questionObjectOrID->ID() : (int)$questionObjectOrID;
242
-		return EEM_Question_Group_Question::instance()->update( array( 'QGQ_order' => $qst_order ), array( array( 'QST_ID' => $qst_ID, 'QSG_ID' => $this->ID() ) ) );
240
+	public function update_question_order($questionObjectOrID, $qst_order) {
241
+		$qst_ID = $questionObjectOrID instanceof EE_Question ? $questionObjectOrID->ID() : (int) $questionObjectOrID;
242
+		return EEM_Question_Group_Question::instance()->update(array('QGQ_order' => $qst_order), array(array('QST_ID' => $qst_ID, 'QSG_ID' => $this->ID())));
243 243
 	}
244 244
 
245 245
 
@@ -250,9 +250,9 @@  discard block
 block discarded – undo
250 250
 	 */
251 251
 	public function has_questions_with_answers() {
252 252
 		$has_answers = FALSE;
253
-		$questions = $this->get_many_related( 'Question' );
254
-		foreach ( $questions as $question ) {
255
-			if ( $question->count_related( 'Answer' ) > 0 )
253
+		$questions = $this->get_many_related('Question');
254
+		foreach ($questions as $question) {
255
+			if ($question->count_related('Answer') > 0)
256 256
 				$has_answers = TRUE;
257 257
 		}
258 258
 		return $has_answers;
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
 	 */
269 269
 	public function set_order_to_latest() {
270 270
 		$latest_order = $this->get_model()->get_latest_question_group_order();
271
-		$latest_order ++;
272
-		$this->set( 'QSG_order', $latest_order );
271
+		$latest_order++;
272
+		$this->set('QSG_order', $latest_order);
273 273
 	}
274 274
 }
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -252,8 +252,9 @@
 block discarded – undo
252 252
 		$has_answers = FALSE;
253 253
 		$questions = $this->get_many_related( 'Question' );
254 254
 		foreach ( $questions as $question ) {
255
-			if ( $question->count_related( 'Answer' ) > 0 )
256
-				$has_answers = TRUE;
255
+			if ( $question->count_related( 'Answer' ) > 0 ) {
256
+							$has_answers = TRUE;
257
+			}
257 258
 		}
258 259
 		return $has_answers;
259 260
 	}
Please login to merge, or discard this patch.
core/db_classes/EE_Registration.class.php 4 patches
Doc Comments   +6 added lines, -5 removed lines patch added patch discarded remove patch
@@ -682,7 +682,7 @@  discard block
 block discarded – undo
682 682
 	 * the registration's share of the transaction total, so that the
683 683
 	 * sum of all the transaction's REG_final_prices equal the transaction's total
684 684
 	 * @access        public
685
-	 * @return    float
685
+	 * @return    boolean
686 686
 	 */
687 687
 	public function final_price() {
688 688
 		return $this->get( 'REG_final_price' );
@@ -704,7 +704,7 @@  discard block
 block discarded – undo
704 704
 	/**
705 705
 	 * get paid (yeah)
706 706
 	 * @access        public
707
-	 * @return 	float
707
+	 * @return 	boolean
708 708
 	 */
709 709
 	public function paid() {
710 710
 		return $this->get( 'REG_paid' );
@@ -817,7 +817,7 @@  discard block
 block discarded – undo
817 817
 	 * (either the question's ID or a question object)
818 818
 	 * @param EE_Question|int $question
819 819
 	 * @param bool            $pretty_value
820
-	 * @return array|string if pretty_value= true, the result will always be a string
820
+	 * @return string if pretty_value= true, the result will always be a string
821 821
 	 * (because the answer might be an array of answer values, so passing pretty_value=true
822 822
 	 * will convert it into some kind of string)
823 823
 	 */
@@ -868,7 +868,7 @@  discard block
 block discarded – undo
868 868
 	/**
869 869
 	 * Sets deleted
870 870
 	 * @param boolean $deleted
871
-	 * @return boolean
871
+	 * @return boolean|null
872 872
 	 */
873 873
 	public function set_deleted($deleted) {
874 874
 		$this->set( 'REG_deleted', $deleted );
@@ -912,6 +912,7 @@  discard block
 block discarded – undo
912 912
 	 *
913 913
 	 * @param int | EE_Datetime $DTT_OR_ID The datetime the registration is being checked against
914 914
 	 * @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.
915
+	 * @param integer $DTT_OR_ID
915 916
 	 *
916 917
 	 * @return bool
917 918
 	 */
@@ -1150,7 +1151,7 @@  discard block
 block discarded – undo
1150 1151
 
1151 1152
 
1152 1153
 	/**
1153
-	 * @return int
1154
+	 * @return boolean
1154 1155
 	 */
1155 1156
 	public function ticket_ID() {
1156 1157
 		return $this->get( 'TKT_ID' );
Please login to merge, or discard this patch.
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.
Spacing   +183 added lines, -183 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_Registration class
@@ -38,9 +38,9 @@  discard block
 block discarded – undo
38 38
 	 * @param string $timezone
39 39
 	 * @return EE_Registration
40 40
 	 */
41
-	public static function new_instance( $props_n_values = array(), $timezone = '' ) {
42
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__ );
43
-		return $has_object ? $has_object : new self( $props_n_values, FALSE, $timezone );
41
+	public static function new_instance($props_n_values = array(), $timezone = '') {
42
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__);
43
+		return $has_object ? $has_object : new self($props_n_values, FALSE, $timezone);
44 44
 	}
45 45
 
46 46
 
@@ -50,8 +50,8 @@  discard block
 block discarded – undo
50 50
 	 * @param string  $timezone
51 51
 	 * @return EE_Registration
52 52
 	 */
53
-	public static function new_instance_from_db( $props_n_values = array(), $timezone = '' ) {
54
-		return new self( $props_n_values, TRUE, $timezone );
53
+	public static function new_instance_from_db($props_n_values = array(), $timezone = '') {
54
+		return new self($props_n_values, TRUE, $timezone);
55 55
 	}
56 56
 
57 57
 
@@ -62,8 +62,8 @@  discard block
 block discarded – undo
62 62
 	 * @access        public
63 63
 	 * @param        int $EVT_ID Event ID
64 64
 	 */
65
-	public function set_event( $EVT_ID = 0 ) {
66
-		$this->set( 'EVT_ID', $EVT_ID );
65
+	public function set_event($EVT_ID = 0) {
66
+		$this->set('EVT_ID', $EVT_ID);
67 67
 	}
68 68
 
69 69
 
@@ -74,18 +74,18 @@  discard block
 block discarded – undo
74 74
 	 * @param mixed  $field_value
75 75
 	 * @param bool   $use_default
76 76
 	 */
77
-	public function set( $field_name, $field_value, $use_default = FALSE ) {
78
-		switch( $field_name ) {
77
+	public function set($field_name, $field_value, $use_default = FALSE) {
78
+		switch ($field_name) {
79 79
 			case 'REG_code' :
80
-				if ( ! empty( $field_value ) && $this->reg_code() == '' ) {
81
-					$this->set_reg_code( $field_value, $use_default );
80
+				if ( ! empty($field_value) && $this->reg_code() == '') {
81
+					$this->set_reg_code($field_value, $use_default);
82 82
 				}
83 83
 				break;
84 84
 			case 'STS_ID' :
85
-				$this->set_status( $field_value, $use_default );
85
+				$this->set_status($field_value, $use_default);
86 86
 				break;
87 87
 			default :
88
-				parent::set( $field_name, $field_value, $use_default );
88
+				parent::set($field_name, $field_value, $use_default);
89 89
 		}
90 90
 	}
91 91
 
@@ -102,30 +102,30 @@  discard block
 block discarded – undo
102 102
 	 * @param boolean $use_default
103 103
 	 * @return bool
104 104
 	 */
105
-	public function set_status( $new_STS_ID = NULL, $use_default = FALSE ) {
105
+	public function set_status($new_STS_ID = NULL, $use_default = FALSE) {
106 106
 		// get current REG_Status
107 107
 		$old_STS_ID = $this->status_ID();
108 108
 		// if status has changed
109
-		if ( $old_STS_ID != $new_STS_ID  ) {
109
+		if ($old_STS_ID != $new_STS_ID) {
110 110
 			// TO approved
111
-			if ( $new_STS_ID == EEM_Registration::status_id_approved ) {
111
+			if ($new_STS_ID == EEM_Registration::status_id_approved) {
112 112
 				// reserve a space by incrementing ticket and datetime sold values
113 113
 				$this->_reserve_registration_space();
114
-				do_action( 'AHEE__EE_Registration__set_status__to_approved', $this, $old_STS_ID, $new_STS_ID );
114
+				do_action('AHEE__EE_Registration__set_status__to_approved', $this, $old_STS_ID, $new_STS_ID);
115 115
 			// OR FROM  approved
116
-			} else if ( $old_STS_ID == EEM_Registration::status_id_approved ) {
116
+			} else if ($old_STS_ID == EEM_Registration::status_id_approved) {
117 117
 				// release a space by decrementing ticket and datetime sold values
118 118
 				$this->_release_registration_space();
119
-				do_action( 'AHEE__EE_Registration__set_status__from_approved', $this, $old_STS_ID, $new_STS_ID );
119
+				do_action('AHEE__EE_Registration__set_status__from_approved', $this, $old_STS_ID, $new_STS_ID);
120 120
 			}
121 121
 			// update status
122
-			parent::set( 'STS_ID', $new_STS_ID, $use_default );
123
-			do_action( 'AHEE__EE_Registration__set_status__after_update', $this );
122
+			parent::set('STS_ID', $new_STS_ID, $use_default);
123
+			do_action('AHEE__EE_Registration__set_status__after_update', $this);
124 124
 			return TRUE;
125
-		}else{
125
+		} else {
126 126
 			//even though the old value matches the new value, it's still good to
127 127
 			//allow the parent set method to have a say
128
-			parent::set( 'STS_ID', $new_STS_ID, $use_default );
128
+			parent::set('STS_ID', $new_STS_ID, $use_default);
129 129
 			return TRUE;
130 130
 		}
131 131
 	}
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 	 * @access        public
138 138
 	 */
139 139
 	public function status_ID() {
140
-		return $this->get( 'STS_ID' );
140
+		return $this->get('STS_ID');
141 141
 	}
142 142
 
143 143
 
@@ -151,9 +151,9 @@  discard block
 block discarded – undo
151 151
 		$ticket->increase_sold();
152 152
 		$ticket->save();
153 153
 		$datetimes = $ticket->datetimes();
154
-		if ( is_array( $datetimes ) ) {
155
-			foreach ( $datetimes as $datetime ) {
156
-				if ( $datetime instanceof EE_Datetime ) {
154
+		if (is_array($datetimes)) {
155
+			foreach ($datetimes as $datetime) {
156
+				if ($datetime instanceof EE_Datetime) {
157 157
 					$datetime->increase_sold();
158 158
 					$datetime->save();
159 159
 				}
@@ -171,12 +171,12 @@  discard block
 block discarded – undo
171 171
 	 * @param boolean $include_archived whether to include archived tickets or not.
172 172
 	 * @return EE_Ticket
173 173
 	 */
174
-	public function ticket( $include_archived = TRUE ) {
174
+	public function ticket($include_archived = TRUE) {
175 175
 		$query_params = array();
176
-		if ( $include_archived ) {
177
-			$query_params[ 'default_where_conditions' ] = 'none';
176
+		if ($include_archived) {
177
+			$query_params['default_where_conditions'] = 'none';
178 178
 		}
179
-		return $this->get_first_related( 'Ticket', $query_params );
179
+		return $this->get_first_related('Ticket', $query_params);
180 180
 	}
181 181
 
182 182
 
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
 	 * @return EE_Event
187 187
 	 */
188 188
 	public function event() {
189
-		return $this->get_first_related( 'Event' );
189
+		return $this->get_first_related('Event');
190 190
 	}
191 191
 
192 192
 
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
 	 */
201 201
 	public function wp_user() {
202 202
 		$event = $this->event();
203
-		if ( $event instanceof EE_Event ) {
203
+		if ($event instanceof EE_Event) {
204 204
 			return $event->wp_user();
205 205
 		}
206 206
 		return 0;
@@ -217,9 +217,9 @@  discard block
 block discarded – undo
217 217
 		$ticket->decrease_sold();
218 218
 		$ticket->save();
219 219
 		$datetimes = $ticket->datetimes();
220
-		if ( is_array( $datetimes ) ) {
221
-			foreach ( $datetimes as $datetime ) {
222
-				if ( $datetime instanceof EE_Datetime ) {
220
+		if (is_array($datetimes)) {
221
+			foreach ($datetimes as $datetime) {
222
+				if ($datetime instanceof EE_Datetime) {
223 223
 					$datetime->decrease_sold();
224 224
 					$datetime->save();
225 225
 				}
@@ -235,8 +235,8 @@  discard block
 block discarded – undo
235 235
 	 * @access        public
236 236
 	 * @param        int $ATT_ID Attendee ID
237 237
 	 */
238
-	public function set_attendee_id( $ATT_ID = 0 ) {
239
-		$this->set( 'ATT_ID', $ATT_ID );
238
+	public function set_attendee_id($ATT_ID = 0) {
239
+		$this->set('ATT_ID', $ATT_ID);
240 240
 	}
241 241
 
242 242
 
@@ -247,8 +247,8 @@  discard block
 block discarded – undo
247 247
 	 * @access        public
248 248
 	 * @param        int $TXN_ID Transaction ID
249 249
 	 */
250
-	public function set_transaction_id( $TXN_ID = 0 ) {
251
-		$this->set( 'TXN_ID', $TXN_ID );
250
+	public function set_transaction_id($TXN_ID = 0) {
251
+		$this->set('TXN_ID', $TXN_ID);
252 252
 	}
253 253
 
254 254
 
@@ -259,8 +259,8 @@  discard block
 block discarded – undo
259 259
 	 * @access    public
260 260
 	 * @param    string $REG_session PHP Session ID
261 261
 	 */
262
-	public function set_session( $REG_session = '' ) {
263
-		$this->set( 'REG_session', $REG_session );
262
+	public function set_session($REG_session = '') {
263
+		$this->set('REG_session', $REG_session);
264 264
 	}
265 265
 
266 266
 
@@ -271,8 +271,8 @@  discard block
 block discarded – undo
271 271
 	 * @access    public
272 272
 	 * @param    string $REG_url_link Registration URL Link
273 273
 	 */
274
-	public function set_reg_url_link( $REG_url_link = '' ) {
275
-		$this->set( 'REG_url_link', $REG_url_link );
274
+	public function set_reg_url_link($REG_url_link = '') {
275
+		$this->set('REG_url_link', $REG_url_link);
276 276
 	}
277 277
 
278 278
 
@@ -283,8 +283,8 @@  discard block
 block discarded – undo
283 283
 	 * @access        public
284 284
 	 * @param        int $REG_count Primary Attendee
285 285
 	 */
286
-	public function set_count( $REG_count = 1 ) {
287
-		$this->set( 'REG_count', $REG_count );
286
+	public function set_count($REG_count = 1) {
287
+		$this->set('REG_count', $REG_count);
288 288
 	}
289 289
 
290 290
 
@@ -295,8 +295,8 @@  discard block
 block discarded – undo
295 295
 	 * @access        public
296 296
 	 * @param        boolean $REG_group_size Group Registration
297 297
 	 */
298
-	public function set_group_size( $REG_group_size = FALSE ) {
299
-		$this->set( 'REG_group_size', $REG_group_size );
298
+	public function set_group_size($REG_group_size = FALSE) {
299
+		$this->set('REG_group_size', $REG_group_size);
300 300
 	}
301 301
 
302 302
 
@@ -379,8 +379,8 @@  discard block
 block discarded – undo
379 379
 	 * @access        public
380 380
 	 * @param        mixed ( int or string ) $REG_date Registration Date - Unix timestamp or string representation of Date
381 381
 	 */
382
-	public function set_reg_date( $REG_date = FALSE ) {
383
-		$this->set( 'REG_date', $REG_date );
382
+	public function set_reg_date($REG_date = FALSE) {
383
+		$this->set('REG_date', $REG_date);
384 384
 	}
385 385
 
386 386
 
@@ -391,8 +391,8 @@  discard block
 block discarded – undo
391 391
 	 * @access    public
392 392
 	 * @param    float $REG_final_price
393 393
 	 */
394
-	public function set_final_price( $REG_final_price = 0.00 ) {
395
-		$this->set( 'REG_final_price', $REG_final_price );
394
+	public function set_final_price($REG_final_price = 0.00) {
395
+		$this->set('REG_final_price', $REG_final_price);
396 396
 	}
397 397
 
398 398
 
@@ -403,8 +403,8 @@  discard block
 block discarded – undo
403 403
 	 * @access    public
404 404
 	 * @param    float $REG_paid
405 405
 	 */
406
-	public function set_paid( $REG_paid = 0.00 ) {
407
-		$this->set( 'REG_paid', $REG_paid );
406
+	public function set_paid($REG_paid = 0.00) {
407
+		$this->set('REG_paid', $REG_paid);
408 408
 	}
409 409
 
410 410
 
@@ -415,8 +415,8 @@  discard block
 block discarded – undo
415 415
 	 * @access        public
416 416
 	 * @param        boolean $REG_att_is_going Attendee Is Going
417 417
 	 */
418
-	public function set_att_is_going( $REG_att_is_going = FALSE ) {
419
-		$this->set( 'REG_att_is_going', $REG_att_is_going );
418
+	public function set_att_is_going($REG_att_is_going = FALSE) {
419
+		$this->set('REG_att_is_going', $REG_att_is_going);
420 420
 	}
421 421
 
422 422
 
@@ -426,7 +426,7 @@  discard block
 block discarded – undo
426 426
 	 * @return EE_Attendee
427 427
 	 */
428 428
 	public function attendee() {
429
-		return $this->get_first_related( 'Attendee' );
429
+		return $this->get_first_related('Attendee');
430 430
 	}
431 431
 
432 432
 
@@ -436,7 +436,7 @@  discard block
 block discarded – undo
436 436
 	 * @access        public
437 437
 	 */
438 438
 	public function event_ID() {
439
-		return $this->get( 'EVT_ID' );
439
+		return $this->get('EVT_ID');
440 440
 	}
441 441
 
442 442
 
@@ -447,7 +447,7 @@  discard block
 block discarded – undo
447 447
 	 */
448 448
 	public function event_name() {
449 449
 		$event = $this->event_obj();
450
-		if ( $event ) {
450
+		if ($event) {
451 451
 			return $event->name();
452 452
 		} else {
453 453
 			return NULL;
@@ -461,7 +461,7 @@  discard block
 block discarded – undo
461 461
 	 * @return EE_Event
462 462
 	 */
463 463
 	public function event_obj() {
464
-		return $this->get_first_related( 'Event' );
464
+		return $this->get_first_related('Event');
465 465
 	}
466 466
 
467 467
 
@@ -471,7 +471,7 @@  discard block
 block discarded – undo
471 471
 	 * @access        public
472 472
 	 */
473 473
 	public function attendee_ID() {
474
-		return $this->get( 'ATT_ID' );
474
+		return $this->get('ATT_ID');
475 475
 	}
476 476
 
477 477
 
@@ -481,7 +481,7 @@  discard block
 block discarded – undo
481 481
 	 * @access        public
482 482
 	 */
483 483
 	public function session_ID() {
484
-		return $this->get( 'REG_session' );
484
+		return $this->get('REG_session');
485 485
 	}
486 486
 
487 487
 
@@ -491,7 +491,7 @@  discard block
 block discarded – undo
491 491
 	 * @param string $messenger 'pdf' or 'html'.  Default 'html'.
492 492
 	 * @return string
493 493
 	 */
494
-	public function receipt_url( $messenger = 'html' ) {
494
+	public function receipt_url($messenger = 'html') {
495 495
 
496 496
 		/**
497 497
 		 * 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.
@@ -500,12 +500,12 @@  discard block
 block discarded – undo
500 500
 		 */
501 501
 		EE_Registry::instance()->load_helper('Template');
502 502
 		$template_relative_path = 'modules/gateways/Invoice/lib/templates/receipt_body.template.php';
503
-		$has_custom = EEH_Template::locate_template( $template_relative_path , array(), TRUE, TRUE, TRUE );
503
+		$has_custom = EEH_Template::locate_template($template_relative_path, array(), TRUE, TRUE, TRUE);
504 504
 
505
-		if ( $has_custom ) {
506
-			return add_query_arg( array( 'receipt' => 'true' ), $this->invoice_url( 'launch' ) );
505
+		if ($has_custom) {
506
+			return add_query_arg(array('receipt' => 'true'), $this->invoice_url('launch'));
507 507
 		}
508
-		return apply_filters( 'FHEE__EE_Registration__receipt_url__receipt_url', '', $this, $messenger, 'receipt' );
508
+		return apply_filters('FHEE__EE_Registration__receipt_url__receipt_url', '', $this, $messenger, 'receipt');
509 509
 	}
510 510
 
511 511
 
@@ -516,7 +516,7 @@  discard block
 block discarded – undo
516 516
 	 * @param string $messenger 'pdf' or 'html'.  Default 'html'.
517 517
 	 * @return string
518 518
 	 */
519
-	public function invoice_url( $messenger = 'html' ) {
519
+	public function invoice_url($messenger = 'html') {
520 520
 		/**
521 521
 		 * 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.
522 522
 		 *
@@ -524,21 +524,21 @@  discard block
 block discarded – undo
524 524
 		 */
525 525
 		EE_Registry::instance()->load_helper('Template');
526 526
 		$template_relative_path = 'modules/gateways/Invoice/lib/templates/invoice_body.template.php';
527
-		$has_custom = EEH_Template::locate_template( $template_relative_path , array(), TRUE, TRUE, TRUE );
527
+		$has_custom = EEH_Template::locate_template($template_relative_path, array(), TRUE, TRUE, TRUE);
528 528
 
529
-		if ( $has_custom ) {
530
-			if ( $messenger == 'html' ) {
531
-				return $this->invoice_url( 'launch' );
529
+		if ($has_custom) {
530
+			if ($messenger == 'html') {
531
+				return $this->invoice_url('launch');
532 532
 			}
533 533
 			$route = $messenger == 'download' || $messenger == 'pdf' ? 'download_invoice' : 'launch_invoice';
534 534
 
535
-			$query_args = array( 'ee' => $route, 'id' => $this->reg_url_link() );
536
-			if ( $messenger == 'html' ) {
535
+			$query_args = array('ee' => $route, 'id' => $this->reg_url_link());
536
+			if ($messenger == 'html') {
537 537
 				$query_args['html'] = TRUE;
538 538
 			}
539
-			return add_query_arg( $query_args, get_permalink( EE_Registry::instance()->CFG->core->thank_you_page_id ) );
539
+			return add_query_arg($query_args, get_permalink(EE_Registry::instance()->CFG->core->thank_you_page_id));
540 540
 		}
541
-		return apply_filters( 'FHEE__EE_Registration__invoice_url__invoice_url', '', $this, $messenger, 'invoice' );
541
+		return apply_filters('FHEE__EE_Registration__invoice_url__invoice_url', '', $this, $messenger, 'invoice');
542 542
 	}
543 543
 
544 544
 
@@ -548,7 +548,7 @@  discard block
 block discarded – undo
548 548
 	 * @access        public
549 549
 	 */
550 550
 	public function reg_url_link() {
551
-		return $this->get( 'REG_url_link' );
551
+		return $this->get('REG_url_link');
552 552
 	}
553 553
 
554 554
 
@@ -558,8 +558,8 @@  discard block
 block discarded – undo
558 558
 	 * @param string $type 'download','launch', or 'html' (default is 'launch')
559 559
 	 * @return void
560 560
 	 */
561
-	public function e_invoice_url( $type = 'launch' ) {
562
-		echo $this->invoice_url( $type );
561
+	public function e_invoice_url($type = 'launch') {
562
+		echo $this->invoice_url($type);
563 563
 	}
564 564
 
565 565
 
@@ -579,7 +579,7 @@  discard block
 block discarded – undo
579 579
 	 * @return string
580 580
 	 */
581 581
 	public function payment_overview_url() {
582
-		return add_query_arg( array( 'e_reg_url_link' => $this->reg_url_link(), 'step' => 'payment_options', 'revisit' => TRUE ), get_permalink( EE_Registry::instance()->CFG->core->reg_page_id ) );
582
+		return add_query_arg(array('e_reg_url_link' => $this->reg_url_link(), 'step' => 'payment_options', 'revisit' => TRUE), get_permalink(EE_Registry::instance()->CFG->core->reg_page_id));
583 583
 	}
584 584
 
585 585
 
@@ -590,7 +590,7 @@  discard block
 block discarded – undo
590 590
 	 * @return string
591 591
 	 */
592 592
 	public function edit_attendee_information_url() {
593
-		return add_query_arg( array( 'e_reg_url_link' => $this->reg_url_link(), 'step' => 'attendee_information', 'revisit' => TRUE ), get_permalink( EE_Registry::instance()->CFG->core->reg_page_id ) );
593
+		return add_query_arg(array('e_reg_url_link' => $this->reg_url_link(), 'step' => 'attendee_information', 'revisit' => TRUE), get_permalink(EE_Registry::instance()->CFG->core->reg_page_id));
594 594
 	}
595 595
 
596 596
 
@@ -600,8 +600,8 @@  discard block
 block discarded – undo
600 600
 	 * @return string
601 601
 	 */
602 602
 	public function get_admin_edit_url() {
603
-		EE_Registry::instance()->load_helper( 'URL' );
604
-		return EEH_URL::add_query_args_and_nonce( array( 'page' => 'espresso_registrations', 'action' => 'view_registration', '_REG_ID' => $this->ID() ), admin_url( 'admin.php' ) );
603
+		EE_Registry::instance()->load_helper('URL');
604
+		return EEH_URL::add_query_args_and_nonce(array('page' => 'espresso_registrations', 'action' => 'view_registration', '_REG_ID' => $this->ID()), admin_url('admin.php'));
605 605
 	}
606 606
 
607 607
 
@@ -611,7 +611,7 @@  discard block
 block discarded – undo
611 611
 	 * @access        public
612 612
 	 */
613 613
 	public function is_primary_registrant() {
614
-		return $this->get( 'REG_count' ) == 1 ? TRUE : FALSE;
614
+		return $this->get('REG_count') == 1 ? TRUE : FALSE;
615 615
 	}
616 616
 
617 617
 
@@ -620,12 +620,12 @@  discard block
 block discarded – undo
620 620
 	 * This returns the primary registration object for this registration group (which may be this object).
621 621
 	 * @return EE_Registration
622 622
 	 */
623
-	public function get_primary_registration()  {
624
-		if ( $this->is_primary_registrant() )
623
+	public function get_primary_registration() {
624
+		if ($this->is_primary_registrant())
625 625
 			return $this;
626 626
 
627 627
 		//k reg_count !== 1 so let's get the EE_Registration object matching this txn_id and reg_count == 1
628
-		$primary_registrant = EEM_Registration::instance()->get_one( array( array('TXN_ID' => $this->transaction_ID(), 'REG_count' => 1 ) ) );
628
+		$primary_registrant = EEM_Registration::instance()->get_one(array(array('TXN_ID' => $this->transaction_ID(), 'REG_count' => 1)));
629 629
 		return $primary_registrant;
630 630
 	}
631 631
 
@@ -636,7 +636,7 @@  discard block
 block discarded – undo
636 636
 	* 		@access		public
637 637
 	*/
638 638
 	public function count() {
639
-		return $this->get( 'REG_count' );
639
+		return $this->get('REG_count');
640 640
 	}
641 641
 
642 642
 
@@ -646,7 +646,7 @@  discard block
 block discarded – undo
646 646
 	 * @access        public
647 647
 	 */
648 648
 	public function group_size() {
649
-		return $this->get( 'REG_group_size' );
649
+		return $this->get('REG_group_size');
650 650
 	}
651 651
 
652 652
 
@@ -656,7 +656,7 @@  discard block
 block discarded – undo
656 656
 	 * @access        public
657 657
 	 */
658 658
 	public function date() {
659
-		return $this->get( 'REG_date' );
659
+		return $this->get('REG_date');
660 660
 	}
661 661
 
662 662
 
@@ -667,8 +667,8 @@  discard block
 block discarded – undo
667 667
 	 * @param string $time_format
668 668
 	 * @return string
669 669
 	 */
670
-	public function pretty_date( $date_format = NULL, $time_format = NULL ) {
671
-		return $this->get_datetime( 'REG_date', $date_format, $time_format );
670
+	public function pretty_date($date_format = NULL, $time_format = NULL) {
671
+		return $this->get_datetime('REG_date', $date_format, $time_format);
672 672
 	}
673 673
 
674 674
 
@@ -680,7 +680,7 @@  discard block
 block discarded – undo
680 680
 	 * @return    float
681 681
 	 */
682 682
 	public function final_price() {
683
-		return $this->get( 'REG_final_price' );
683
+		return $this->get('REG_final_price');
684 684
 	}
685 685
 
686 686
 
@@ -691,7 +691,7 @@  discard block
 block discarded – undo
691 691
 	 * @return string
692 692
 	 */
693 693
 	public function pretty_final_price() {
694
-		return $this->get_pretty( 'REG_final_price' );
694
+		return $this->get_pretty('REG_final_price');
695 695
 	}
696 696
 
697 697
 
@@ -702,7 +702,7 @@  discard block
 block discarded – undo
702 702
 	 * @return 	float
703 703
 	 */
704 704
 	public function paid() {
705
-		return $this->get( 'REG_paid' );
705
+		return $this->get('REG_paid');
706 706
 	}
707 707
 
708 708
 
@@ -713,7 +713,7 @@  discard block
 block discarded – undo
713 713
 	 * @return 	float
714 714
 	 */
715 715
 	public function pretty_paid() {
716
-		return $this->get_pretty( 'REG_paid' );
716
+		return $this->get_pretty('REG_paid');
717 717
 	}
718 718
 
719 719
 
@@ -725,11 +725,11 @@  discard block
 block discarded – undo
725 725
 	 * @param array $requires_payment
726 726
 	 * @return bool
727 727
 	 */
728
-	public function owes_monies_and_can_pay( $requires_payment = array()) {
728
+	public function owes_monies_and_can_pay($requires_payment = array()) {
729 729
 		// these reg statuses require payment (if event is not free)
730
-		$requires_payment = ! empty( $requires_payment ) ? $requires_payment : EEM_Registration::reg_statuses_that_allow_payment();
730
+		$requires_payment = ! empty($requires_payment) ? $requires_payment : EEM_Registration::reg_statuses_that_allow_payment();
731 731
 		if (
732
-			in_array( $this->status_ID(), $requires_payment ) &&
732
+			in_array($this->status_ID(), $requires_payment) &&
733 733
 			$this->final_price() != 0 &&
734 734
 			$this->final_price() != $this->paid()
735 735
 		) {
@@ -746,8 +746,8 @@  discard block
 block discarded – undo
746 746
 	 * @param bool $show_icons
747 747
 	 * @return void
748 748
 	 */
749
-	public function e_pretty_status( $show_icons = FALSE ) {
750
-		echo $this->pretty_status( $show_icons );
749
+	public function e_pretty_status($show_icons = FALSE) {
750
+		echo $this->pretty_status($show_icons);
751 751
 	}
752 752
 
753 753
 
@@ -758,10 +758,10 @@  discard block
 block discarded – undo
758 758
 	 * @param bool $show_icons
759 759
 	 * @return string
760 760
 	 */
761
-	public function pretty_status( $show_icons = FALSE ) {
762
-		$status = EEM_Status::instance()->localized_status( array( $this->status_ID() => __( 'unknown', 'event_espresso' ) ), FALSE, 'sentence' );
761
+	public function pretty_status($show_icons = FALSE) {
762
+		$status = EEM_Status::instance()->localized_status(array($this->status_ID() => __('unknown', 'event_espresso')), FALSE, 'sentence');
763 763
 		$icon = '';
764
-		switch ( $this->status_ID() ) {
764
+		switch ($this->status_ID()) {
765 765
 			case EEM_Registration::status_id_approved:
766 766
 				$icon = $show_icons ? '<span class="dashicons dashicons-star-filled ee-icon-size-16 green-text"></span>' : '';
767 767
 				break;
@@ -781,7 +781,7 @@  discard block
 block discarded – undo
781 781
 				$icon = $show_icons ? '<span class="dashicons dashicons-no ee-icon-size-16 red-text"></span>' : '';
782 782
 				break;
783 783
 		}
784
-		return $icon . $status[ $this->status_ID() ];
784
+		return $icon.$status[$this->status_ID()];
785 785
 	}
786 786
 
787 787
 
@@ -791,7 +791,7 @@  discard block
 block discarded – undo
791 791
 	 * @access        public
792 792
 	 */
793 793
 	public function att_is_going() {
794
-		return $this->get( 'REG_att_is_going' );
794
+		return $this->get('REG_att_is_going');
795 795
 	}
796 796
 
797 797
 
@@ -801,8 +801,8 @@  discard block
 block discarded – undo
801 801
 	 * @param array $query_params like EEM_Base::get_all
802 802
 	 * @return EE_Answer[]
803 803
 	 */
804
-	public function answers( $query_params = NULL ) {
805
-		return $this->get_many_related( 'Answer', $query_params );
804
+	public function answers($query_params = NULL) {
805
+		return $this->get_many_related('Answer', $query_params);
806 806
 	}
807 807
 
808 808
 
@@ -816,9 +816,9 @@  discard block
 block discarded – undo
816 816
 	 * (because the answer might be an array of answer values, so passing pretty_value=true
817 817
 	 * will convert it into some kind of string)
818 818
 	 */
819
-	public function answer_value_to_question( $question, $pretty_value=true ) {
819
+	public function answer_value_to_question($question, $pretty_value = true) {
820 820
 		$question_id = EEM_Question::instance()->ensure_is_ID($question);
821
-		return EEM_Answer::instance()->get_answer_value_to_question($this,$question_id,$pretty_value);
821
+		return EEM_Answer::instance()->get_answer_value_to_question($this, $question_id, $pretty_value);
822 822
 	}
823 823
 
824 824
 	/**
@@ -827,7 +827,7 @@  discard block
 block discarded – undo
827 827
 	 * @return string
828 828
 	 */
829 829
 	public function reg_date() {
830
-		return $this->get_datetime( 'REG_date' );
830
+		return $this->get_datetime('REG_date');
831 831
 	}
832 832
 
833 833
 
@@ -839,7 +839,7 @@  discard block
 block discarded – undo
839 839
 	 * @return EE_Datetime_Ticket
840 840
 	 */
841 841
 	public function datetime_ticket() {
842
-		return $this->get_first_related( 'Datetime_Ticket' );
842
+		return $this->get_first_related('Datetime_Ticket');
843 843
 	}
844 844
 
845 845
 
@@ -849,15 +849,15 @@  discard block
 block discarded – undo
849 849
 	 * @param EE_Datetime_Ticket $datetime_ticket
850 850
 	 * @return EE_Datetime_Ticket
851 851
 	 */
852
-	public function set_datetime_ticket( $datetime_ticket ) {
853
-		return $this->_add_relation_to( $datetime_ticket, 'Datetime_Ticket' );
852
+	public function set_datetime_ticket($datetime_ticket) {
853
+		return $this->_add_relation_to($datetime_ticket, 'Datetime_Ticket');
854 854
 	}
855 855
 	/**
856 856
 	 * Gets deleted
857 857
 	 * @return boolean
858 858
 	 */
859 859
 	public function deleted() {
860
-		return $this->get( 'REG_deleted' );
860
+		return $this->get('REG_deleted');
861 861
 	}
862 862
 
863 863
 	/**
@@ -866,7 +866,7 @@  discard block
 block discarded – undo
866 866
 	 * @return boolean
867 867
 	 */
868 868
 	public function set_deleted($deleted) {
869
-		$this->set( 'REG_deleted', $deleted );
869
+		$this->set('REG_deleted', $deleted);
870 870
 	}
871 871
 
872 872
 
@@ -876,7 +876,7 @@  discard block
 block discarded – undo
876 876
 	 * @return EE_Status
877 877
 	 */
878 878
 	public function status_obj() {
879
-		return $this->get_first_related( 'Status' );
879
+		return $this->get_first_related('Status');
880 880
 	}
881 881
 
882 882
 
@@ -887,7 +887,7 @@  discard block
 block discarded – undo
887 887
 	 * @return int
888 888
 	 */
889 889
 	public function count_checkins() {
890
-		return $this->get_model()->count_related( $this, 'Checkin' );
890
+		return $this->get_model()->count_related($this, 'Checkin');
891 891
 	}
892 892
 
893 893
 
@@ -897,7 +897,7 @@  discard block
 block discarded – undo
897 897
 	 * @return int
898 898
 	 */
899 899
 	public function count_checkins_not_checkedout() {
900
-		return $this->get_model()->count_related( $this, 'Checkin', array( array( 'CHK_in' => 1 ) ) );
900
+		return $this->get_model()->count_related($this, 'Checkin', array(array('CHK_in' => 1)));
901 901
 	}
902 902
 
903 903
 
@@ -910,20 +910,20 @@  discard block
 block discarded – undo
910 910
 	 *
911 911
 	 * @return bool
912 912
 	 */
913
-	public function can_checkin( $DTT_OR_ID, $check_approved = TRUE ) {
914
-		$DTT_ID = EEM_Datetime::instance()->ensure_is_ID( $DTT_OR_ID );
913
+	public function can_checkin($DTT_OR_ID, $check_approved = TRUE) {
914
+		$DTT_ID = EEM_Datetime::instance()->ensure_is_ID($DTT_OR_ID);
915 915
 
916 916
 		//first check registration status
917
-		if (  ( $check_approved && ! $this->is_approved() ) || ! $DTT_ID ) {
917
+		if (($check_approved && ! $this->is_approved()) || ! $DTT_ID) {
918 918
 			return false;
919 919
 		}
920 920
 		//is there a datetime ticket that matches this dtt_ID?
921
-		if ( ! ( EEM_Datetime_Ticket::instance()->exists( array( array( 'TKT_ID' => $this->get('TKT_ID' ), 'DTT_ID' => $DTT_ID ) ) ) ) ) {
921
+		if ( ! (EEM_Datetime_Ticket::instance()->exists(array(array('TKT_ID' => $this->get('TKT_ID'), 'DTT_ID' => $DTT_ID))))) {
922 922
 			return false;
923 923
 		}
924 924
 
925 925
 		//final check is against TKT_uses
926
-		return $this->verify_can_checkin_against_TKT_uses( $DTT_ID );
926
+		return $this->verify_can_checkin_against_TKT_uses($DTT_ID);
927 927
 	}
928 928
 
929 929
 
@@ -936,10 +936,10 @@  discard block
 block discarded – undo
936 936
 	 * @param int | EE_Datetime  $DTT_OR_ID  The datetime the registration is being checked against
937 937
 	 * @return bool   true means can checkin.  false means cannot checkin.
938 938
 	 */
939
-	public function verify_can_checkin_against_TKT_uses( $DTT_OR_ID ) {
940
-		$DTT_ID = EEM_Datetime::instance()->ensure_is_ID( $DTT_OR_ID );
939
+	public function verify_can_checkin_against_TKT_uses($DTT_OR_ID) {
940
+		$DTT_ID = EEM_Datetime::instance()->ensure_is_ID($DTT_OR_ID);
941 941
 
942
-		if ( ! $DTT_ID ) {
942
+		if ( ! $DTT_ID) {
943 943
 			return false;
944 944
 		}
945 945
 
@@ -947,23 +947,23 @@  discard block
 block discarded – undo
947 947
 
948 948
 		// if max uses is not set or equals infinity then return true cause its not a factor for whether user can check-in
949 949
 		// or not.
950
-		if ( ! $max_uses || $max_uses === INF ) {
950
+		if ( ! $max_uses || $max_uses === INF) {
951 951
 			return true;
952 952
 		}
953 953
 
954 954
 		//does this datetime have a checkin record?  If so, then the dtt count has already been verified so we can just
955 955
 		//go ahead and toggle.
956
-		if ( EEM_Checkin::instance()->exists( array( array( 'REG_ID' => $this->ID(), 'DTT_ID' => $DTT_ID ) ) ) ) {
956
+		if (EEM_Checkin::instance()->exists(array(array('REG_ID' => $this->ID(), 'DTT_ID' => $DTT_ID)))) {
957 957
 			return true;
958 958
 		}
959 959
 
960 960
 		//made it here so the last check is whether the number of checkins per unique datetime on this registration
961 961
 		//disallows further check-ins.
962
-		$count_unique_dtt_checkins = EEM_Checkin::instance()->count( array( array( 'REG_ID' => $this->ID(), 'CHK_in' => true ) ), 'DTT_ID', true );
962
+		$count_unique_dtt_checkins = EEM_Checkin::instance()->count(array(array('REG_ID' => $this->ID(), 'CHK_in' => true)), 'DTT_ID', true);
963 963
 		// checkins have already reached their max number of uses
964 964
 		// so registrant can NOT checkin
965
-		if ( $count_unique_dtt_checkins >= $max_uses ) {
966
-			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__ );
965
+		if ($count_unique_dtt_checkins >= $max_uses) {
966
+			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__);
967 967
 			return false;
968 968
 		}
969 969
 		return true;
@@ -984,15 +984,15 @@  discard block
 block discarded – undo
984 984
 	 * @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.
985 985
 	 * @return int|BOOL            the chk_in status toggled to OR false if nothing got changed.
986 986
 	 */
987
-	public function toggle_checkin_status( $DTT_ID = null, $verify = false ) {
988
-		if ( empty( $DTT_ID ) ) {
987
+	public function toggle_checkin_status($DTT_ID = null, $verify = false) {
988
+		if (empty($DTT_ID)) {
989 989
 			$datetime = $this->get_related_primary_datetime();
990 990
 			$DTT_ID = $datetime->ID();
991 991
 		// verify the registration can checkin for the given DTT_ID
992
-		} elseif ( ! $this->can_checkin( $DTT_ID, $verify ) ) {
992
+		} elseif ( ! $this->can_checkin($DTT_ID, $verify)) {
993 993
 			EE_Error::add_error(
994 994
 					sprintf(
995
-						__( 'The given registration (ID:%1$d) can not be checked in to the given DTT_ID (%2$d),
995
+						__('The given registration (ID:%1$d) can not be checked in to the given DTT_ID (%2$d),
996 996
 						because the registration does not have access', 'event_espresso'),
997 997
 						$this->ID(),
998 998
 						$DTT_ID
@@ -1007,8 +1007,8 @@  discard block
 block discarded – undo
1007 1007
 			EE_Registration::checkin_status_out => EE_Registration::checkin_status_in
1008 1008
 		);
1009 1009
 		//start by getting the current status so we know what status we'll be changing to.
1010
-		$cur_status = $this->check_in_status_for_datetime( $DTT_ID, NULL );
1011
-		$status_to = $status_paths[ $cur_status ];
1010
+		$cur_status = $this->check_in_status_for_datetime($DTT_ID, NULL);
1011
+		$status_to = $status_paths[$cur_status];
1012 1012
 		// database only records true for checked IN or false for checked OUT
1013 1013
 		// no record ( null ) means checked in NEVER, but we obviously don't save that
1014 1014
 		$new_status = $status_to == EE_Registration::checkin_status_in ? true : false;
@@ -1016,24 +1016,24 @@  discard block
 block discarded – undo
1016 1016
 		// because we are keeping track of Check-ins over time.
1017 1017
 		// Eventually we'll probably want to show a list table
1018 1018
 		// for the individual Check-ins so that they can be managed.
1019
-		$checkin = EE_Checkin::new_instance( array(
1019
+		$checkin = EE_Checkin::new_instance(array(
1020 1020
 				'REG_ID' => $this->ID(),
1021 1021
 				'DTT_ID' => $DTT_ID,
1022 1022
 				'CHK_in' => $new_status
1023
-		) );
1023
+		));
1024 1024
 		// if the record could not be saved then return false
1025
-		if ( $checkin->save() === 0 ) {
1026
-			if ( WP_DEBUG ) {
1025
+		if ($checkin->save() === 0) {
1026
+			if (WP_DEBUG) {
1027 1027
 				global $wpdb;
1028 1028
 				$error = sprintf(
1029
-					__( 'Registration check in update failed because of the following database error: %1$s%2$s', 	'event_espresso' ),
1029
+					__('Registration check in update failed because of the following database error: %1$s%2$s', 'event_espresso'),
1030 1030
 					'<br />',
1031 1031
 					$wpdb->last_error
1032 1032
 				);
1033 1033
 			} else {
1034
-				$error = __( 'Registration check in update failed because of an unknown database error', 'event_espresso' );
1034
+				$error = __('Registration check in update failed because of an unknown database error', 'event_espresso');
1035 1035
 			}
1036
-			EE_Error::add_error( $error, __FILE__, __FUNCTION__, __LINE__ );
1036
+			EE_Error::add_error($error, __FILE__, __FUNCTION__, __LINE__);
1037 1037
 			return false;
1038 1038
 		}
1039 1039
 		return $status_to;
@@ -1057,19 +1057,19 @@  discard block
 block discarded – undo
1057 1057
 	 * @param EE_Checkin $checkin If present, we use the given checkin object rather than the dtt_id.
1058 1058
 	 * @return int            Integer representing Check-in status.
1059 1059
 	 */
1060
-	public function check_in_status_for_datetime( $DTT_ID = 0, $checkin = NULL ) {
1061
-		if ( empty( $DTT_ID ) && ! $checkin instanceof EE_Checkin ) {
1060
+	public function check_in_status_for_datetime($DTT_ID = 0, $checkin = NULL) {
1061
+		if (empty($DTT_ID) && ! $checkin instanceof EE_Checkin) {
1062 1062
 			$datetime = $this->get_related_primary_datetime();
1063
-			if ( ! $datetime instanceof EE_Datetime ) {
1063
+			if ( ! $datetime instanceof EE_Datetime) {
1064 1064
 				return 0;
1065 1065
 			}
1066 1066
 			$DTT_ID = $datetime->ID();
1067 1067
 		//verify the registration can checkin for the given DTT_ID
1068 1068
 		}
1069 1069
 		//get checkin object (if exists)
1070
-		$checkin = $checkin instanceof EE_Checkin ? $checkin : $this->get_first_related( 'Checkin', array( array( 'DTT_ID' => $DTT_ID ), 'order_by' => array( 'CHK_timestamp' => 'DESC' ) ) );
1071
-		if ( $checkin instanceof EE_Checkin ) {
1072
-			if ( $checkin->get( 'CHK_in' ) ) {
1070
+		$checkin = $checkin instanceof EE_Checkin ? $checkin : $this->get_first_related('Checkin', array(array('DTT_ID' => $DTT_ID), 'order_by' => array('CHK_timestamp' => 'DESC')));
1071
+		if ($checkin instanceof EE_Checkin) {
1072
+			if ($checkin->get('CHK_in')) {
1073 1073
 				return EE_Registration::checkin_status_in; //checked in
1074 1074
 			} else {
1075 1075
 				return EE_Registration::checkin_status_out; //had checked in but is now checked out.
@@ -1087,28 +1087,28 @@  discard block
 block discarded – undo
1087 1087
 	 * @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.
1088 1088
 	 * @return string         internationalized message
1089 1089
 	 */
1090
-	public function get_checkin_msg( $DTT_ID, $error = FALSE ) {
1090
+	public function get_checkin_msg($DTT_ID, $error = FALSE) {
1091 1091
 		//let's get the attendee first so we can include the name of the attendee
1092
-		$attendee = $this->get_first_related( 'Attendee' );
1093
-		if ( $attendee instanceof EE_Attendee ) {
1094
-			if ( $error ) {
1095
-				return sprintf( __( "%s's check-in status was not changed.", "event_espresso" ), $attendee->full_name() );
1092
+		$attendee = $this->get_first_related('Attendee');
1093
+		if ($attendee instanceof EE_Attendee) {
1094
+			if ($error) {
1095
+				return sprintf(__("%s's check-in status was not changed.", "event_espresso"), $attendee->full_name());
1096 1096
 			}
1097
-			$cur_status = $this->check_in_status_for_datetime( $DTT_ID );
1097
+			$cur_status = $this->check_in_status_for_datetime($DTT_ID);
1098 1098
 			//what is the status message going to be?
1099
-			switch ( $cur_status ) {
1099
+			switch ($cur_status) {
1100 1100
 				case EE_Registration::checkin_status_never :
1101
-					return sprintf( __( "%s has been removed from Check-in records", "event_espresso" ), $attendee->full_name() );
1101
+					return sprintf(__("%s has been removed from Check-in records", "event_espresso"), $attendee->full_name());
1102 1102
 					break;
1103 1103
 				case EE_Registration::checkin_status_in :
1104
-					return sprintf( __( '%s has been checked in', 'event_espresso' ), $attendee->full_name() );
1104
+					return sprintf(__('%s has been checked in', 'event_espresso'), $attendee->full_name());
1105 1105
 					break;
1106 1106
 				case EE_Registration::checkin_status_out :
1107
-					return sprintf( __( '%s has been checked out', 'event_espresso' ), $attendee->full_name() );
1107
+					return sprintf(__('%s has been checked out', 'event_espresso'), $attendee->full_name());
1108 1108
 					break;
1109 1109
 			}
1110 1110
 		}
1111
-		return __( "The check-in status could not be determined.", "event_espresso" );
1111
+		return __("The check-in status could not be determined.", "event_espresso");
1112 1112
 	}
1113 1113
 
1114 1114
 
@@ -1118,7 +1118,7 @@  discard block
 block discarded – undo
1118 1118
 	 * @return EE_Transaction
1119 1119
 	 */
1120 1120
 	public function transaction() {
1121
-		return $this->get_first_related( 'Transaction' );
1121
+		return $this->get_first_related('Transaction');
1122 1122
 	}
1123 1123
 
1124 1124
 
@@ -1129,7 +1129,7 @@  discard block
 block discarded – undo
1129 1129
 	 * @access        public
1130 1130
 	 */
1131 1131
 	public function reg_code() {
1132
-		return $this->get( 'REG_code' );
1132
+		return $this->get('REG_code');
1133 1133
 	}
1134 1134
 
1135 1135
 
@@ -1139,7 +1139,7 @@  discard block
 block discarded – undo
1139 1139
 	 * @access        public
1140 1140
 	 */
1141 1141
 	public function transaction_ID() {
1142
-		return $this->get( 'TXN_ID' );
1142
+		return $this->get('TXN_ID');
1143 1143
 	}
1144 1144
 
1145 1145
 
@@ -1148,7 +1148,7 @@  discard block
 block discarded – undo
1148 1148
 	 * @return int
1149 1149
 	 */
1150 1150
 	public function ticket_ID() {
1151
-		return $this->get( 'TKT_ID' );
1151
+		return $this->get('TKT_ID');
1152 1152
 	}
1153 1153
 
1154 1154
 
@@ -1160,17 +1160,17 @@  discard block
 block discarded – undo
1160 1160
 	 * @param    string $REG_code Registration Code
1161 1161
 	 * @param	boolean $use_default
1162 1162
 	 */
1163
-	public function set_reg_code( $REG_code, $use_default = FALSE ) {
1164
-		if ( empty( $REG_code )) {
1165
-			EE_Error::add_error( __( 'REG_code can not be empty.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__ );
1163
+	public function set_reg_code($REG_code, $use_default = FALSE) {
1164
+		if (empty($REG_code)) {
1165
+			EE_Error::add_error(__('REG_code can not be empty.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__);
1166 1166
 			return;
1167 1167
 		}
1168
-		if ( ! $this->reg_code() ) {
1169
-			parent::set( 'REG_code', $REG_code, $use_default );
1168
+		if ( ! $this->reg_code()) {
1169
+			parent::set('REG_code', $REG_code, $use_default);
1170 1170
 		} else {
1171 1171
 			EE_Error::doing_it_wrong(
1172
-				__CLASS__ . '::' . __FUNCTION__,
1173
-				__( 'Can not change a registration REG_code once it has been set.', 'event_espresso' ),
1172
+				__CLASS__.'::'.__FUNCTION__,
1173
+				__('Can not change a registration REG_code once it has been set.', 'event_espresso'),
1174 1174
 				'4.6.0'
1175 1175
 			);
1176 1176
 		}
@@ -1190,17 +1190,17 @@  discard block
 block discarded – undo
1190 1190
 	 * @return EE_Registration[]  or empty array if this isn't a group registration.
1191 1191
 	 */
1192 1192
 	public function get_all_other_registrations_in_group() {
1193
-		if ( $this->group_size() < 2 ) {
1193
+		if ($this->group_size() < 2) {
1194 1194
 			return array();
1195 1195
 		}
1196 1196
 
1197 1197
 		$query[0] = array(
1198 1198
 			'TXN_ID' => $this->transaction_ID(),
1199
-			'REG_ID' => array( '!=', $this->ID() ),
1199
+			'REG_ID' => array('!=', $this->ID()),
1200 1200
 			'TKT_ID' => $this->ticket_ID()
1201 1201
 			);
1202 1202
 
1203
-		$registrations = $this->get_model()->get_all( $query );
1203
+		$registrations = $this->get_model()->get_all($query);
1204 1204
 		return $registrations;
1205 1205
 	}
1206 1206
 
@@ -1212,7 +1212,7 @@  discard block
 block discarded – undo
1212 1212
 	 * @access 	public
1213 1213
 	 */
1214 1214
 	public function price_paid() {
1215
-		EE_Error::doing_it_wrong( 'EE_Registration::price_paid()', __( 'This method is deprecated, please use EE_Registration::final_price() instead.', 'event_espresso' ), '4.7.0' );
1215
+		EE_Error::doing_it_wrong('EE_Registration::price_paid()', __('This method is deprecated, please use EE_Registration::final_price() instead.', 'event_espresso'), '4.7.0');
1216 1216
 		return $this->final_price();
1217 1217
 	}
1218 1218
 
@@ -1224,9 +1224,9 @@  discard block
 block discarded – undo
1224 1224
 	 * @access    public
1225 1225
 	 * @param    float $REG_final_price
1226 1226
 	 */
1227
-	public function set_price_paid( $REG_final_price = 0.00 ) {
1228
-		EE_Error::doing_it_wrong( 'EE_Registration::set_price_paid()', __( 'This method is deprecated, please use EE_Registration::set_final_price() instead.', 'event_espresso' ), '4.7.0' );
1229
-		$this->set_final_price( $REG_final_price );
1227
+	public function set_price_paid($REG_final_price = 0.00) {
1228
+		EE_Error::doing_it_wrong('EE_Registration::set_price_paid()', __('This method is deprecated, please use EE_Registration::set_final_price() instead.', 'event_espresso'), '4.7.0');
1229
+		$this->set_final_price($REG_final_price);
1230 1230
 	}
1231 1231
 
1232 1232
 
@@ -1237,7 +1237,7 @@  discard block
 block discarded – undo
1237 1237
 	 * @return string
1238 1238
 	 */
1239 1239
 	public function pretty_price_paid() {
1240
-		EE_Error::doing_it_wrong( 'EE_Registration::pretty_price_paid()', __( 'This method is deprecated, please use EE_Registration::pretty_final_price() instead.', 'event_espresso' ), '4.7.0' );
1240
+		EE_Error::doing_it_wrong('EE_Registration::pretty_price_paid()', __('This method is deprecated, please use EE_Registration::pretty_final_price() instead.', 'event_espresso'), '4.7.0');
1241 1241
 		return $this->pretty_final_price();
1242 1242
 	}
1243 1243
 
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.
core/db_classes/EE_Registration_Payment.class.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 	/**
41 41
 	 * registration_ID
42 42
 	 * @access 	public
43
-	 * @return 	int
43
+	 * @return 	boolean
44 44
 	 */
45 45
 	public function registration_ID() {
46 46
 		return $this->get( 'REG_ID' );
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 	/**
52 52
 	 * payment_ID
53 53
 	 * @access 	public
54
-	 * @return    int
54
+	 * @return    boolean
55 55
 	 */
56 56
 	public function payment_ID() {
57 57
 		return $this->get( 'PAY_ID' );
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 	/**
63 63
 	 * amount
64 64
 	 * @access 	public
65
-	 * @return 	float
65
+	 * @return 	boolean
66 66
 	 */
67 67
 	public function amount() {
68 68
 		return $this->get( 'RPY_amount' );
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@  discard block
 block discarded – undo
19 19
 	 * @param string $timezone
20 20
 	 * @return EE_Registration_Payment
21 21
 	 */
22
-	public static function new_instance( $props_n_values = array(), $timezone = '' ) {
23
-		$has_object = parent::_check_for_object( $props_n_values, __CLASS__ );
24
-		return $has_object ? $has_object : new self( $props_n_values, false, $timezone );
22
+	public static function new_instance($props_n_values = array(), $timezone = '') {
23
+		$has_object = parent::_check_for_object($props_n_values, __CLASS__);
24
+		return $has_object ? $has_object : new self($props_n_values, false, $timezone);
25 25
 	}
26 26
 
27 27
 
@@ -31,8 +31,8 @@  discard block
 block discarded – undo
31 31
 	 * @param string $timezone
32 32
 	 * @return EE_Registration_Payment
33 33
 	 */
34
-	public static function new_instance_from_db( $props_n_values = array(), $timezone = '' ) {
35
-		return new self( $props_n_values, true, $timezone );
34
+	public static function new_instance_from_db($props_n_values = array(), $timezone = '') {
35
+		return new self($props_n_values, true, $timezone);
36 36
 	}
37 37
 
38 38
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 	 * @return 	int
44 44
 	 */
45 45
 	public function registration_ID() {
46
-		return $this->get( 'REG_ID' );
46
+		return $this->get('REG_ID');
47 47
 	}
48 48
 
49 49
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 	 * @return    int
55 55
 	 */
56 56
 	public function payment_ID() {
57
-		return $this->get( 'PAY_ID' );
57
+		return $this->get('PAY_ID');
58 58
 	}
59 59
 
60 60
 
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 	 * @return 	float
66 66
 	 */
67 67
 	public function amount() {
68
-		return $this->get( 'RPY_amount' );
68
+		return $this->get('RPY_amount');
69 69
 	}
70 70
 
71 71
 
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
75 75
 	 * @access    public
76 76
 	 * @param float $amount
77 77
 	 */
78
-	public function set_amount( $amount = 0.000 ) {
79
-		$this->set( 'RPY_amount', $amount );
78
+	public function set_amount($amount = 0.000) {
79
+		$this->set('RPY_amount', $amount);
80 80
 	}
81 81
 
82 82
 
Please login to merge, or discard this patch.
core/db_classes/EE_State.class.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
 
52 52
 	/**
53
-	 * @return string
53
+	 * @return boolean
54 54
 	 */
55 55
 	public function country_iso() {
56 56
 		return $this->get( 'CNT_ISO' );
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
 
61 61
 	/**
62
-	 * @return string
62
+	 * @return boolean
63 63
 	 */
64 64
 	public function abbrev() {
65 65
 		return $this->get( 'STA_abbrev' );
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 
78 78
 
79 79
 	/**
80
-	 * @return string
80
+	 * @return boolean
81 81
 	 */
82 82
 	public function name() {
83 83
 		return $this->get( 'STA_name' );
Please login to merge, or discard this 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
Doc Comments   +7 added lines, -7 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 );
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 
77 77
 	/**
78 78
 	 * Gets desc
79
-	 * @return string
79
+	 * @return boolean
80 80
 	 */
81 81
 	function desc() {
82 82
 		return $this->get( 'STS_desc' );
@@ -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 );
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 
98 98
 	/**
99 99
 	 * Gets type
100
-	 * @return string
100
+	 * @return boolean
101 101
 	 */
102 102
 	function type() {
103 103
 		return $this->get( 'STS_type' );
@@ -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.
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.
core/db_classes/EE_Term.class.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 
67 67
 	/**
68 68
 	 * Gets name
69
-	 * @return string
69
+	 * @return boolean
70 70
 	 */
71 71
 	function name() {
72 72
 		return $this->get( 'name' );
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 	/**
78 78
 	 * Sets name
79 79
 	 * @param string $name
80
-	 * @return boolean
80
+	 * @return boolean|null
81 81
 	 */
82 82
 	function set_name( $name ) {
83 83
 		$this->set( 'name', $name );
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 
88 88
 	/**
89 89
 	 * Gets slug
90
-	 * @return string
90
+	 * @return boolean
91 91
 	 */
92 92
 	function slug() {
93 93
 		return $this->get( 'slug' );
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 	/**
99 99
 	 * Sets slug
100 100
 	 * @param string $slug
101
-	 * @return boolean
101
+	 * @return boolean|null
102 102
 	 */
103 103
 	function set_slug( $slug ) {
104 104
 		$this->set( 'slug', $slug );
Please login to merge, or discard this patch.
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.
core/db_classes/EE_Term_Taxonomy.class.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 
52 52
 	/**
53 53
 	 * Gets taxonomy
54
-	 * @return string
54
+	 * @return boolean
55 55
 	 */
56 56
 	function taxonomy() {
57 57
 		return $this->get( 'taxonomy' );
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 	/**
63 63
 	 * Sets taxonomy
64 64
 	 * @param string $taxonomy
65
-	 * @return boolean
65
+	 * @return boolean|null
66 66
 	 */
67 67
 	function set_taxonomy( $taxonomy ) {
68 68
 		$this->set( 'taxonomy', $taxonomy );
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
 	/**
74 74
 	 * Gets term_count
75
-	 * @return int
75
+	 * @return boolean
76 76
 	 */
77 77
 	function count() {
78 78
 		return $this->get( 'term_count' );
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 	/**
84 84
 	 * Sets term_count
85 85
 	 * @param int $term_count
86
-	 * @return boolean
86
+	 * @return boolean|null
87 87
 	 */
88 88
 	function set_count( $term_count ) {
89 89
 		$this->set( 'term_count', $term_count );
Please login to merge, or discard this patch.
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.