@@ -60,9 +60,9 @@ discard block |
||
| 60 | 60 | |
| 61 | 61 | foreach ( $defaults as $key => $default ) { |
| 62 | 62 | if ( array_key_exists( $key, $args ) ) { |
| 63 | - $out[ $key ] = $args[ $key ]; |
|
| 63 | + $out[$key] = $args[$key]; |
|
| 64 | 64 | } else { |
| 65 | - $out[ $key ] = $default; |
|
| 65 | + $out[$key] = $default; |
|
| 66 | 66 | } |
| 67 | 67 | } |
| 68 | 68 | |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | |
| 88 | 88 | if ( $this->is_debug ) { |
| 89 | 89 | foreach ( $body['events'] as $index => $event ) { |
| 90 | - $body['events'][ $index ]['params']['debug_mode'] = true; |
|
| 90 | + $body['events'][$index]['params']['debug_mode'] = true; |
|
| 91 | 91 | } |
| 92 | 92 | } |
| 93 | 93 | |