@@ -103,11 +103,11 @@ discard block |
||
103 | 103 | |
104 | 104 | /** Call all lazy callbacks. */ |
105 | 105 | foreach ( $this->callbacks as $callback ) { |
106 | - if ( $callback[0] != 'count' ) { |
|
106 | + if ( $callback[ 0 ] != 'count' ) { |
|
107 | 107 | continue; |
108 | 108 | } |
109 | 109 | |
110 | - $total += $callback[1]( $this->filters ); |
|
110 | + $total += $callback[ 1 ]( $this->filters ); |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | return $total - $this->offset; |
@@ -161,11 +161,11 @@ discard block |
||
161 | 161 | |
162 | 162 | /** Call all lazy callbacks. */ |
163 | 163 | foreach ( $this->callbacks as $i => $callback ) { |
164 | - if ( $callback[0] != 'fetch' ) { |
|
164 | + if ( $callback[ 0 ] != 'fetch' ) { |
|
165 | 165 | continue; |
166 | 166 | } |
167 | 167 | |
168 | - $this->merge( $callback[1]( $this->filters, $this->sorts, $offset ) ); |
|
168 | + $this->merge( $callback[ 1 ]( $this->filters, $this->sorts, $offset ) ); |
|
169 | 169 | } |
170 | 170 | |
171 | 171 | $this->fetched = $this->count(); |
@@ -321,7 +321,7 @@ discard block |
||
321 | 321 | return; |
322 | 322 | } |
323 | 323 | |
324 | - $this->callbacks []= array( $type, $callback ); |
|
324 | + $this->callbacks [ ] = array( $type, $callback ); |
|
325 | 325 | } |
326 | 326 | |
327 | 327 | /** |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | * @return void |
26 | 26 | */ |
27 | 27 | public function add( $value ) { |
28 | - $this->storage []= $value; |
|
28 | + $this->storage [ ] = $value; |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | * @return void |
50 | 50 | */ |
51 | 51 | public function merge( \GV\Collection $collection ) { |
52 | - array_map( array( $this, 'add'), $collection->all() ); |
|
52 | + array_map( array( $this, 'add' ), $collection->all() ); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | /** |
@@ -205,8 +205,8 @@ discard block |
||
205 | 205 | * @return string The version of PHP. |
206 | 206 | */ |
207 | 207 | private function get_php_version() { |
208 | - return !empty( $GLOBALS['GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE'] ) ? |
|
209 | - $GLOBALS['GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE'] : phpversion(); |
|
208 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE' ] ) ? |
|
209 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_PHP_VERSION_OVERRIDE' ] : phpversion(); |
|
210 | 210 | } |
211 | 211 | |
212 | 212 | /** |
@@ -217,8 +217,8 @@ discard block |
||
217 | 217 | * @return string The version of WordPress. |
218 | 218 | */ |
219 | 219 | private function get_wordpress_version() { |
220 | - return !empty( $GLOBALS['GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE'] ) ? |
|
221 | - $GLOBALS['GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE'] : $GLOBALS['wp_version']; |
|
220 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE' ] ) ? |
|
221 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_WP_VERSION_OVERRIDE' ] : $GLOBALS[ 'wp_version' ]; |
|
222 | 222 | } |
223 | 223 | |
224 | 224 | /** |
@@ -230,12 +230,12 @@ discard block |
||
230 | 230 | * @return string The version of Gravity Forms. |
231 | 231 | */ |
232 | 232 | private function get_gravityforms_version() { |
233 | - if ( !class_exists( '\GFCommon' ) || !empty( $GLOBALS['GRAVITYVIEW_TESTS_GF_INACTIVE_OVERRIDE'] ) ) { |
|
233 | + if ( ! class_exists( '\GFCommon' ) || ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_INACTIVE_OVERRIDE' ] ) ) { |
|
234 | 234 | throw new \ErrorException( 'Gravity Forms is inactive or not installed.' ); |
235 | 235 | } |
236 | 236 | |
237 | - return !empty( $GLOBALS['GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE'] ) ? |
|
238 | - $GLOBALS['GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE'] : \GFCommon::$version; |
|
237 | + return ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE' ] ) ? |
|
238 | + $GLOBALS[ 'GRAVITYVIEW_TESTS_GF_VERSION_OVERRIDE' ] : \GFCommon::$version; |
|
239 | 239 | } |
240 | 240 | |
241 | 241 | private function __clone() { } |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | protected function log( $level, $message, $context ) { |
29 | 29 | |
30 | 30 | $backtrace = debug_backtrace(); |
31 | - $location = $this->interpolate( "{class}{type}{function}", $backtrace[2] ); |
|
31 | + $location = $this->interpolate( "{class}{type}{function}", $backtrace[ 2 ] ); |
|
32 | 32 | |
33 | 33 | $message = $this->interpolate( "[$level, $location] $message", $context ); |
34 | 34 | |
@@ -52,14 +52,14 @@ discard block |
||
52 | 52 | do_action( |
53 | 53 | sprintf( 'gravityview_log_%s_test', $action ), |
54 | 54 | $this->interpolate( $message, $context ), |
55 | - empty( $context['data'] ) ? array() : $context['data'] |
|
55 | + empty( $context[ 'data' ] ) ? array() : $context[ 'data' ] |
|
56 | 56 | ); |
57 | 57 | } |
58 | 58 | |
59 | 59 | do_action( |
60 | 60 | sprintf( 'gravityview_log_%s', $action ), |
61 | 61 | $this->interpolate( $message, $context ), |
62 | - empty( $context['data'] ) ? array() : $context['data'] |
|
62 | + empty( $context[ 'data' ] ) ? array() : $context[ 'data' ] |
|
63 | 63 | ); |
64 | 64 | } |
65 | 65 | } |
@@ -36,9 +36,9 @@ discard block |
||
36 | 36 | * |
37 | 37 | * @return void |
38 | 38 | */ |
39 | - public function emergency($message, array $context = array()) |
|
39 | + public function emergency( $message, array $context = array() ) |
|
40 | 40 | { |
41 | - $this->log(LogLevel::EMERGENCY, $message, $context); |
|
41 | + $this->log( LogLevel::EMERGENCY, $message, $context ); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | /** |
@@ -52,9 +52,9 @@ discard block |
||
52 | 52 | * |
53 | 53 | * @return void |
54 | 54 | */ |
55 | - public function alert($message, array $context = array()) |
|
55 | + public function alert( $message, array $context = array() ) |
|
56 | 56 | { |
57 | - $this->log(LogLevel::ALERT, $message, $context); |
|
57 | + $this->log( LogLevel::ALERT, $message, $context ); |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | /** |
@@ -67,9 +67,9 @@ discard block |
||
67 | 67 | * |
68 | 68 | * @return void |
69 | 69 | */ |
70 | - public function critical($message, array $context = array()) |
|
70 | + public function critical( $message, array $context = array() ) |
|
71 | 71 | { |
72 | - $this->log(LogLevel::CRITICAL, $message, $context); |
|
72 | + $this->log( LogLevel::CRITICAL, $message, $context ); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | /** |
@@ -81,9 +81,9 @@ discard block |
||
81 | 81 | * |
82 | 82 | * @return void |
83 | 83 | */ |
84 | - public function error($message, array $context = array()) |
|
84 | + public function error( $message, array $context = array() ) |
|
85 | 85 | { |
86 | - $this->log(LogLevel::ERROR, $message, $context); |
|
86 | + $this->log( LogLevel::ERROR, $message, $context ); |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | /** |
@@ -97,9 +97,9 @@ discard block |
||
97 | 97 | * |
98 | 98 | * @return void |
99 | 99 | */ |
100 | - public function warning($message, array $context = array()) |
|
100 | + public function warning( $message, array $context = array() ) |
|
101 | 101 | { |
102 | - $this->log(LogLevel::WARNING, $message, $context); |
|
102 | + $this->log( LogLevel::WARNING, $message, $context ); |
|
103 | 103 | } |
104 | 104 | |
105 | 105 | /** |
@@ -110,9 +110,9 @@ discard block |
||
110 | 110 | * |
111 | 111 | * @return void |
112 | 112 | */ |
113 | - public function notice($message, array $context = array()) |
|
113 | + public function notice( $message, array $context = array() ) |
|
114 | 114 | { |
115 | - $this->log(LogLevel::NOTICE, $message, $context); |
|
115 | + $this->log( LogLevel::NOTICE, $message, $context ); |
|
116 | 116 | } |
117 | 117 | |
118 | 118 | /** |
@@ -125,9 +125,9 @@ discard block |
||
125 | 125 | * |
126 | 126 | * @return void |
127 | 127 | */ |
128 | - public function info($message, array $context = array()) |
|
128 | + public function info( $message, array $context = array() ) |
|
129 | 129 | { |
130 | - $this->log(LogLevel::INFO, $message, $context); |
|
130 | + $this->log( LogLevel::INFO, $message, $context ); |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | /** |
@@ -138,9 +138,9 @@ discard block |
||
138 | 138 | * |
139 | 139 | * @return void |
140 | 140 | */ |
141 | - public function debug($message, array $context = array()) |
|
141 | + public function debug( $message, array $context = array() ) |
|
142 | 142 | { |
143 | - $this->log(LogLevel::DEBUG, $message, $context); |
|
143 | + $this->log( LogLevel::DEBUG, $message, $context ); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * @return void |
32 | 32 | */ |
33 | 33 | public function __set( $key, $value ) { |
34 | - $this->_context[$key] = $value; |
|
34 | + $this->_context[ $key ] = $value; |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | * @return mixed|null |
46 | 46 | */ |
47 | 47 | public function __get( $key ) { |
48 | - return isset( $this->_context[$key] ) ? $this->_context[$key] : null; |
|
48 | + return isset( $this->_context[ $key ] ) ? $this->_context[ $key ] : null; |
|
49 | 49 | } |
50 | 50 | } |
51 | 51 |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | $supports = array( 'title', 'revisions' ); |
87 | 87 | |
88 | 88 | if ( $is_hierarchical ) { |
89 | - $supports[] = 'page-attributes'; |
|
89 | + $supports[ ] = 'page-attributes'; |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | /** |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | if ( ! $view->form ) { |
198 | 198 | gravityview()->log->error( 'View #{view_id} tried attaching non-existent Form #{form_id} to it.', array( |
199 | 199 | 'view_id' => $view->ID, |
200 | - 'form_id' => $view->_gravityview_form_id ? : 0, |
|
200 | + 'form_id' => $view->_gravityview_form_id ?: 0, |
|
201 | 201 | ) ); |
202 | 202 | } |
203 | 203 | |
@@ -348,7 +348,7 @@ discard block |
||
348 | 348 | * Add the other keys as they are moved out to ensure we're not using them in core. |
349 | 349 | */ |
350 | 350 | |
351 | - } else if ( ! empty( $GLOBALS['GRAVITYVIEW_TESTS_VIEW_ARRAY_ACCESS_OVERRIDE'] ) ) { |
|
351 | + } else if ( ! empty( $GLOBALS[ 'GRAVITYVIEW_TESTS_VIEW_ARRAY_ACCESS_OVERRIDE' ] ) ) { |
|
352 | 352 | /** |
353 | 353 | * Suppress exception if specifically testing for array acess. |
354 | 354 | */ |
@@ -361,7 +361,7 @@ discard block |
||
361 | 361 | } |
362 | 362 | } |
363 | 363 | |
364 | - if ( ! isset( $this[$offset] ) ) { |
|
364 | + if ( ! isset( $this[ $offset ] ) ) { |
|
365 | 365 | return null; |
366 | 366 | } |
367 | 367 | |
@@ -379,7 +379,7 @@ discard block |
||
379 | 379 | return $this->template ? $this->template->ID : null; |
380 | 380 | default: |
381 | 381 | /** @todo move the rest out and get rid of _data completely! */ |
382 | - return $this->_data[$offset]; |
|
382 | + return $this->_data[ $offset ]; |
|
383 | 383 | } |
384 | 384 | } |
385 | 385 | |
@@ -430,7 +430,7 @@ discard block |
||
430 | 430 | array( 'form' => $this->form ? gravityview_get_form( $this->form->ID ) : null ), |
431 | 431 | array( 'atts' => $this->settings->as_atts() ), |
432 | 432 | array( 'fields' => $this->fields->by_visible()->as_configuration() ), |
433 | - array( 'template_id' => $this->template? $this->template->ID : null ), |
|
433 | + array( 'template_id' => $this->template ? $this->template->ID : null ), |
|
434 | 434 | $this->_data |
435 | 435 | ); |
436 | 436 | } |
@@ -55,10 +55,10 @@ |
||
55 | 55 | $search_criteria[ $key ] = $field_filters; |
56 | 56 | } |
57 | 57 | |
58 | - if ( ! empty( $b[ $key ]['mode'] ) ) { |
|
59 | - $search_criteria[ $key ]['mode' ] = $b[ $key ]['mode']; |
|
60 | - } else if ( ! empty( $a[ $key ]['mode'] ) ) { |
|
61 | - $search_criteria[ $key ]['mode' ] = $a[ $key ]['mode']; |
|
58 | + if ( ! empty( $b[ $key ][ 'mode' ] ) ) { |
|
59 | + $search_criteria[ $key ][ 'mode' ] = $b[ $key ][ 'mode' ]; |
|
60 | + } else if ( ! empty( $a[ $key ][ 'mode' ] ) ) { |
|
61 | + $search_criteria[ $key ][ 'mode' ] = $a[ $key ][ 'mode' ]; |
|
62 | 62 | } |
63 | 63 | break; |
64 | 64 | case 'start_date': |
@@ -42,14 +42,14 @@ discard block |
||
42 | 42 | */ |
43 | 43 | public static function by_id( $form_id ) { |
44 | 44 | $form = \GFAPI::get_form( $form_id ); |
45 | - if ( !$form ) { |
|
45 | + if ( ! $form ) { |
|
46 | 46 | return null; |
47 | 47 | } |
48 | 48 | |
49 | 49 | $self = new self(); |
50 | 50 | $self->form = $form; |
51 | 51 | |
52 | - $self->ID = $self->form['id']; |
|
52 | + $self->ID = $self->form[ 'id' ]; |
|
53 | 53 | |
54 | 54 | return $self; |
55 | 55 | } |
@@ -91,15 +91,15 @@ discard block |
||
91 | 91 | |
92 | 92 | /** The offset and limit */ |
93 | 93 | if ( ! empty( $offset->limit ) ) { |
94 | - $paging['page_size'] = $offset->limit; |
|
94 | + $paging[ 'page_size' ] = $offset->limit; |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | if ( ! empty( $offset->offset ) ) { |
98 | - $paging['offset'] = $offset->offset; |
|
98 | + $paging[ 'offset' ] = $offset->offset; |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | foreach ( \GFAPI::get_entries( $form->ID, $search_criteria, $sorting, $paging ) as $entry ) { |
102 | - $entries->add( \GV\GF_Entry::by_id( $entry['id'] ) ); |
|
102 | + $entries->add( \GV\GF_Entry::by_id( $entry[ 'id' ] ) ); |
|
103 | 103 | } |
104 | 104 | |
105 | 105 | return $entries; |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | * @return bool Whether the offset exists or not. |
132 | 132 | */ |
133 | 133 | public function offsetExists( $offset ) { |
134 | - return isset( $this->form[$offset] ); |
|
134 | + return isset( $this->form[ $offset ] ); |
|
135 | 135 | } |
136 | 136 | |
137 | 137 | /** |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | * @return mixed The value of the requested form data. |
149 | 149 | */ |
150 | 150 | public function offsetGet( $offset ) { |
151 | - return $this->form[$offset]; |
|
151 | + return $this->form[ $offset ]; |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | /** |