@@ -55,7 +55,7 @@ |
||
55 | 55 | if ($command instanceof ICommand) { |
56 | 56 | // ensure the command can be serialized |
57 | 57 | $serialized = serialize($command); |
58 | - if(strlen($serialized) > 4000) { |
|
58 | + if (strlen($serialized) > 4000) { |
|
59 | 59 | throw new \InvalidArgumentException('Trying to push a command which serialized form can not be stored in the database (>4000 character)'); |
60 | 60 | } |
61 | 61 | $unserialized = unserialize($serialized); |
@@ -25,7 +25,7 @@ |
||
25 | 25 | use OCP\IUser; |
26 | 26 | |
27 | 27 | trait FileAccess { |
28 | - protected function setupFS(IUser $user){ |
|
28 | + protected function setupFS(IUser $user) { |
|
29 | 29 | \OC_Util::setupFS($user->getUID()); |
30 | 30 | } |
31 | 31 |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | $apps = $this->appManager->getEnabledAppsForUser($this->currentUser); |
109 | 109 | } |
110 | 110 | |
111 | - foreach($apps as $app) { |
|
111 | + foreach ($apps as $app) { |
|
112 | 112 | $apps_paths[$app] = \OC_App::getAppWebPath($app); |
113 | 113 | } |
114 | 114 | |
@@ -121,8 +121,8 @@ discard block |
||
121 | 121 | $outgoingServer2serverShareEnabled = $this->config->getAppValue('files_sharing', 'outgoing_server2server_share_enabled', 'yes') === 'yes'; |
122 | 122 | |
123 | 123 | $countOfDataLocation = 0; |
124 | - $dataLocation = str_replace(\OC::$SERVERROOT .'/', '', $this->config->getSystemValue('datadirectory', ''), $countOfDataLocation); |
|
125 | - if($countOfDataLocation !== 1 || !$this->groupManager->isAdmin($uid)) { |
|
124 | + $dataLocation = str_replace(\OC::$SERVERROOT.'/', '', $this->config->getSystemValue('datadirectory', ''), $countOfDataLocation); |
|
125 | + if ($countOfDataLocation !== 1 || !$this->groupManager->isAdmin($uid)) { |
|
126 | 126 | $dataLocation = false; |
127 | 127 | } |
128 | 128 | |
@@ -144,61 +144,61 @@ discard block |
||
144 | 144 | "datepickerFormatDate" => json_encode($this->l->l('jsdate', null)), |
145 | 145 | 'nc_lastLogin' => $lastConfirmTimestamp, |
146 | 146 | "dayNames" => json_encode([ |
147 | - (string)$this->l->t('Sunday'), |
|
148 | - (string)$this->l->t('Monday'), |
|
149 | - (string)$this->l->t('Tuesday'), |
|
150 | - (string)$this->l->t('Wednesday'), |
|
151 | - (string)$this->l->t('Thursday'), |
|
152 | - (string)$this->l->t('Friday'), |
|
153 | - (string)$this->l->t('Saturday') |
|
147 | + (string) $this->l->t('Sunday'), |
|
148 | + (string) $this->l->t('Monday'), |
|
149 | + (string) $this->l->t('Tuesday'), |
|
150 | + (string) $this->l->t('Wednesday'), |
|
151 | + (string) $this->l->t('Thursday'), |
|
152 | + (string) $this->l->t('Friday'), |
|
153 | + (string) $this->l->t('Saturday') |
|
154 | 154 | ]), |
155 | 155 | "dayNamesShort" => json_encode([ |
156 | - (string)$this->l->t('Sun.'), |
|
157 | - (string)$this->l->t('Mon.'), |
|
158 | - (string)$this->l->t('Tue.'), |
|
159 | - (string)$this->l->t('Wed.'), |
|
160 | - (string)$this->l->t('Thu.'), |
|
161 | - (string)$this->l->t('Fri.'), |
|
162 | - (string)$this->l->t('Sat.') |
|
156 | + (string) $this->l->t('Sun.'), |
|
157 | + (string) $this->l->t('Mon.'), |
|
158 | + (string) $this->l->t('Tue.'), |
|
159 | + (string) $this->l->t('Wed.'), |
|
160 | + (string) $this->l->t('Thu.'), |
|
161 | + (string) $this->l->t('Fri.'), |
|
162 | + (string) $this->l->t('Sat.') |
|
163 | 163 | ]), |
164 | 164 | "dayNamesMin" => json_encode([ |
165 | - (string)$this->l->t('Su'), |
|
166 | - (string)$this->l->t('Mo'), |
|
167 | - (string)$this->l->t('Tu'), |
|
168 | - (string)$this->l->t('We'), |
|
169 | - (string)$this->l->t('Th'), |
|
170 | - (string)$this->l->t('Fr'), |
|
171 | - (string)$this->l->t('Sa') |
|
165 | + (string) $this->l->t('Su'), |
|
166 | + (string) $this->l->t('Mo'), |
|
167 | + (string) $this->l->t('Tu'), |
|
168 | + (string) $this->l->t('We'), |
|
169 | + (string) $this->l->t('Th'), |
|
170 | + (string) $this->l->t('Fr'), |
|
171 | + (string) $this->l->t('Sa') |
|
172 | 172 | ]), |
173 | 173 | "monthNames" => json_encode([ |
174 | - (string)$this->l->t('January'), |
|
175 | - (string)$this->l->t('February'), |
|
176 | - (string)$this->l->t('March'), |
|
177 | - (string)$this->l->t('April'), |
|
178 | - (string)$this->l->t('May'), |
|
179 | - (string)$this->l->t('June'), |
|
180 | - (string)$this->l->t('July'), |
|
181 | - (string)$this->l->t('August'), |
|
182 | - (string)$this->l->t('September'), |
|
183 | - (string)$this->l->t('October'), |
|
184 | - (string)$this->l->t('November'), |
|
185 | - (string)$this->l->t('December') |
|
174 | + (string) $this->l->t('January'), |
|
175 | + (string) $this->l->t('February'), |
|
176 | + (string) $this->l->t('March'), |
|
177 | + (string) $this->l->t('April'), |
|
178 | + (string) $this->l->t('May'), |
|
179 | + (string) $this->l->t('June'), |
|
180 | + (string) $this->l->t('July'), |
|
181 | + (string) $this->l->t('August'), |
|
182 | + (string) $this->l->t('September'), |
|
183 | + (string) $this->l->t('October'), |
|
184 | + (string) $this->l->t('November'), |
|
185 | + (string) $this->l->t('December') |
|
186 | 186 | ]), |
187 | 187 | "monthNamesShort" => json_encode([ |
188 | - (string)$this->l->t('Jan.'), |
|
189 | - (string)$this->l->t('Feb.'), |
|
190 | - (string)$this->l->t('Mar.'), |
|
191 | - (string)$this->l->t('Apr.'), |
|
192 | - (string)$this->l->t('May.'), |
|
193 | - (string)$this->l->t('Jun.'), |
|
194 | - (string)$this->l->t('Jul.'), |
|
195 | - (string)$this->l->t('Aug.'), |
|
196 | - (string)$this->l->t('Sep.'), |
|
197 | - (string)$this->l->t('Oct.'), |
|
198 | - (string)$this->l->t('Nov.'), |
|
199 | - (string)$this->l->t('Dec.') |
|
188 | + (string) $this->l->t('Jan.'), |
|
189 | + (string) $this->l->t('Feb.'), |
|
190 | + (string) $this->l->t('Mar.'), |
|
191 | + (string) $this->l->t('Apr.'), |
|
192 | + (string) $this->l->t('May.'), |
|
193 | + (string) $this->l->t('Jun.'), |
|
194 | + (string) $this->l->t('Jul.'), |
|
195 | + (string) $this->l->t('Aug.'), |
|
196 | + (string) $this->l->t('Sep.'), |
|
197 | + (string) $this->l->t('Oct.'), |
|
198 | + (string) $this->l->t('Nov.'), |
|
199 | + (string) $this->l->t('Dec.') |
|
200 | 200 | ]), |
201 | - "firstDay" => json_encode($this->l->l('firstday', null)) , |
|
201 | + "firstDay" => json_encode($this->l->l('firstday', null)), |
|
202 | 202 | "oc_config" => json_encode([ |
203 | 203 | 'session_lifetime' => min($this->config->getSystemValue('session_lifetime', $this->iniWrapper->getNumeric('session.gc_maxlifetime')), $this->iniWrapper->getNumeric('session.gc_maxlifetime')), |
204 | 204 | 'session_keepalive' => $this->config->getSystemValue('session_keepalive', true), |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | if ($this->currentUser !== null) { |
241 | 241 | $array['oc_userconfig'] = json_encode([ |
242 | 242 | 'avatar' => [ |
243 | - 'version' => (int)$this->config->getUserValue($uid, 'avatar', 'version', 0), |
|
243 | + 'version' => (int) $this->config->getUserValue($uid, 'avatar', 'version', 0), |
|
244 | 244 | ] |
245 | 245 | ]); |
246 | 246 | } |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | |
253 | 253 | // Echo it |
254 | 254 | foreach ($array as $setting => $value) { |
255 | - $result .= 'var '. $setting . '='. $value . ';' . PHP_EOL; |
|
255 | + $result .= 'var '.$setting.'='.$value.';'.PHP_EOL; |
|
256 | 256 | } |
257 | 257 | |
258 | 258 | return $result; |
@@ -41,6 +41,6 @@ |
||
41 | 41 | * @return string |
42 | 42 | */ |
43 | 43 | public function getResourcePath() { |
44 | - return $this->webPath . '/' . $this->resource; |
|
44 | + return $this->webPath.'/'.$this->resource; |
|
45 | 45 | } |
46 | 46 | } |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | /** |
33 | 33 | * @param string[] $dirs |
34 | 34 | */ |
35 | - public function __construct( $dirs ) { |
|
35 | + public function __construct($dirs) { |
|
36 | 36 | $this->dirs = $dirs; |
37 | 37 | } |
38 | 38 | |
@@ -41,12 +41,12 @@ discard block |
||
41 | 41 | * @return string |
42 | 42 | * @throws \Exception |
43 | 43 | */ |
44 | - public function find( $template ) { |
|
44 | + public function find($template) { |
|
45 | 45 | if ($template === '') { |
46 | 46 | throw new \InvalidArgumentException('Empty template name'); |
47 | 47 | } |
48 | 48 | |
49 | - foreach($this->dirs as $dir) { |
|
49 | + foreach ($this->dirs as $dir) { |
|
50 | 50 | $file = $dir.$template.'.php'; |
51 | 51 | if (is_file($file)) { |
52 | 52 | $this->path = $dir; |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | * @param callable $callback |
36 | 36 | */ |
37 | 37 | public function listen($scope, $method, callable $callback) { |
38 | - $eventName = $scope . '::' . $method; |
|
38 | + $eventName = $scope.'::'.$method; |
|
39 | 39 | if (!isset($this->listeners[$eventName])) { |
40 | 40 | $this->listeners[$eventName] = array(); |
41 | 41 | } |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | $names = array(); |
54 | 54 | $allNames = array_keys($this->listeners); |
55 | 55 | if ($scope and $method) { |
56 | - $name = $scope . '::' . $method; |
|
56 | + $name = $scope.'::'.$method; |
|
57 | 57 | if (isset($this->listeners[$name])) { |
58 | 58 | $names[] = $name; |
59 | 59 | } |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | * @param array $arguments optional |
94 | 94 | */ |
95 | 95 | protected function emit($scope, $method, array $arguments = array()) { |
96 | - $eventName = $scope . '::' . $method; |
|
96 | + $eventName = $scope.'::'.$method; |
|
97 | 97 | if (isset($this->listeners[$eventName])) { |
98 | 98 | foreach ($this->listeners[$eventName] as $callback) { |
99 | 99 | call_user_func_array($callback, $arguments); |
@@ -30,23 +30,23 @@ |
||
30 | 30 | * error code for functions not provided by the group backend |
31 | 31 | * @deprecated Use \OC_Group_Backend::NOT_IMPLEMENTED instead |
32 | 32 | */ |
33 | -define('OC_GROUP_BACKEND_NOT_IMPLEMENTED', -501); |
|
33 | +define('OC_GROUP_BACKEND_NOT_IMPLEMENTED', -501); |
|
34 | 34 | |
35 | 35 | /** |
36 | 36 | * actions that user backends can define |
37 | 37 | */ |
38 | 38 | /** @deprecated Use \OC_Group_Backend::CREATE_GROUP instead */ |
39 | -define('OC_GROUP_BACKEND_CREATE_GROUP', 0x00000001); |
|
39 | +define('OC_GROUP_BACKEND_CREATE_GROUP', 0x00000001); |
|
40 | 40 | /** @deprecated Use \OC_Group_Backend::DELETE_GROUP instead */ |
41 | -define('OC_GROUP_BACKEND_DELETE_GROUP', 0x00000010); |
|
41 | +define('OC_GROUP_BACKEND_DELETE_GROUP', 0x00000010); |
|
42 | 42 | /** @deprecated Use \OC_Group_Backend::ADD_TO_GROUP instead */ |
43 | -define('OC_GROUP_BACKEND_ADD_TO_GROUP', 0x00000100); |
|
43 | +define('OC_GROUP_BACKEND_ADD_TO_GROUP', 0x00000100); |
|
44 | 44 | /** @deprecated Use \OC_Group_Backend::REMOVE_FROM_GOUP instead */ |
45 | -define('OC_GROUP_BACKEND_REMOVE_FROM_GOUP', 0x00001000); |
|
45 | +define('OC_GROUP_BACKEND_REMOVE_FROM_GOUP', 0x00001000); |
|
46 | 46 | /** @deprecated Obsolete */ |
47 | -define('OC_GROUP_BACKEND_GET_DISPLAYNAME', 0x00010000); //OBSOLETE |
|
47 | +define('OC_GROUP_BACKEND_GET_DISPLAYNAME', 0x00010000); //OBSOLETE |
|
48 | 48 | /** @deprecated Use \OC_Group_Backend::COUNT_USERS instead */ |
49 | -define('OC_GROUP_BACKEND_COUNT_USERS', 0x00100000); |
|
49 | +define('OC_GROUP_BACKEND_COUNT_USERS', 0x00100000); |
|
50 | 50 | |
51 | 51 | /** |
52 | 52 | * Abstract base class for user management |
@@ -53,8 +53,8 @@ discard block |
||
53 | 53 | * if an array is given it will add all scripts |
54 | 54 | */ |
55 | 55 | function script($app, $file = null) { |
56 | - if(is_array($file)) { |
|
57 | - foreach($file as $f) { |
|
56 | + if (is_array($file)) { |
|
57 | + foreach ($file as $f) { |
|
58 | 58 | OC_Util::addScript($app, $f); |
59 | 59 | } |
60 | 60 | } else { |
@@ -69,8 +69,8 @@ discard block |
||
69 | 69 | * if an array is given it will add all scripts |
70 | 70 | */ |
71 | 71 | function vendor_script($app, $file = null) { |
72 | - if(is_array($file)) { |
|
73 | - foreach($file as $f) { |
|
72 | + if (is_array($file)) { |
|
73 | + foreach ($file as $f) { |
|
74 | 74 | OC_Util::addVendorScript($app, $f); |
75 | 75 | } |
76 | 76 | } else { |
@@ -85,8 +85,8 @@ discard block |
||
85 | 85 | * if an array is given it will add all styles |
86 | 86 | */ |
87 | 87 | function style($app, $file = null) { |
88 | - if(is_array($file)) { |
|
89 | - foreach($file as $f) { |
|
88 | + if (is_array($file)) { |
|
89 | + foreach ($file as $f) { |
|
90 | 90 | OC_Util::addStyle($app, $f); |
91 | 91 | } |
92 | 92 | } else { |
@@ -101,8 +101,8 @@ discard block |
||
101 | 101 | * if an array is given it will add all styles |
102 | 102 | */ |
103 | 103 | function vendor_style($app, $file = null) { |
104 | - if(is_array($file)) { |
|
105 | - foreach($file as $f) { |
|
104 | + if (is_array($file)) { |
|
105 | + foreach ($file as $f) { |
|
106 | 106 | OC_Util::addVendorStyle($app, $f); |
107 | 107 | } |
108 | 108 | } else { |
@@ -126,13 +126,13 @@ discard block |
||
126 | 126 | * if an array is given it will add all components |
127 | 127 | */ |
128 | 128 | function component($app, $file) { |
129 | - if(is_array($file)) { |
|
130 | - foreach($file as $f) { |
|
131 | - $url = link_to($app, 'component/' . $f . '.html'); |
|
129 | + if (is_array($file)) { |
|
130 | + foreach ($file as $f) { |
|
131 | + $url = link_to($app, 'component/'.$f.'.html'); |
|
132 | 132 | OC_Util::addHeader('link', array('rel' => 'import', 'href' => $url)); |
133 | 133 | } |
134 | 134 | } else { |
135 | - $url = link_to($app, 'component/' . $file . '.html'); |
|
135 | + $url = link_to($app, 'component/'.$file.'.html'); |
|
136 | 136 | OC_Util::addHeader('link', array('rel' => 'import', 'href' => $url)); |
137 | 137 | } |
138 | 138 | } |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | * |
147 | 147 | * For further information have a look at \OCP\IURLGenerator::linkTo |
148 | 148 | */ |
149 | -function link_to( $app, $file, $args = array() ) { |
|
149 | +function link_to($app, $file, $args = array()) { |
|
150 | 150 | return \OC::$server->getURLGenerator()->linkTo($app, $file, $args); |
151 | 151 | } |
152 | 152 | |
@@ -166,8 +166,8 @@ discard block |
||
166 | 166 | * |
167 | 167 | * For further information have a look at \OCP\IURLGenerator::imagePath |
168 | 168 | */ |
169 | -function image_path( $app, $image ) { |
|
170 | - return \OC::$server->getURLGenerator()->imagePath( $app, $image ); |
|
169 | +function image_path($app, $image) { |
|
170 | + return \OC::$server->getURLGenerator()->imagePath($app, $image); |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | /** |
@@ -175,8 +175,8 @@ discard block |
||
175 | 175 | * @param string $mimetype mimetype |
176 | 176 | * @return string link to the image |
177 | 177 | */ |
178 | -function mimetype_icon( $mimetype ) { |
|
179 | - return \OC::$server->getMimeTypeDetector()->mimeTypeIcon( $mimetype ); |
|
178 | +function mimetype_icon($mimetype) { |
|
179 | + return \OC::$server->getMimeTypeDetector()->mimeTypeIcon($mimetype); |
|
180 | 180 | } |
181 | 181 | |
182 | 182 | /** |
@@ -185,14 +185,14 @@ discard block |
||
185 | 185 | * @param string $path path of file |
186 | 186 | * @return link to the preview |
187 | 187 | */ |
188 | -function preview_icon( $path ) { |
|
188 | +function preview_icon($path) { |
|
189 | 189 | return \OC::$server->getURLGenerator()->linkToRoute('core.Preview.getPreview', ['x' => 32, 'y' => 32, 'file' => $path]); |
190 | 190 | } |
191 | 191 | |
192 | 192 | /** |
193 | 193 | * @param string $path |
194 | 194 | */ |
195 | -function publicPreview_icon ( $path, $token ) { |
|
195 | +function publicPreview_icon($path, $token) { |
|
196 | 196 | return \OC::$server->getURLGenerator()->linkToRoute('files_sharing.PublicPreview.getPreview', ['x' => 32, 'y' => 32, 'file' => $path, 't' => $token]); |
197 | 197 | } |
198 | 198 | |
@@ -203,8 +203,8 @@ discard block |
||
203 | 203 | * |
204 | 204 | * For further information have a look at OC_Helper::humanFileSize |
205 | 205 | */ |
206 | -function human_file_size( $bytes ) { |
|
207 | - return OC_Helper::humanFileSize( $bytes ); |
|
206 | +function human_file_size($bytes) { |
|
207 | + return OC_Helper::humanFileSize($bytes); |
|
208 | 208 | } |
209 | 209 | |
210 | 210 | /** |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | * @param int $timestamp UNIX timestamp to strip |
213 | 213 | * @return $timestamp without time value |
214 | 214 | */ |
215 | -function strip_time($timestamp){ |
|
215 | +function strip_time($timestamp) { |
|
216 | 216 | $date = new \DateTime("@{$timestamp}"); |
217 | 217 | $date->setTime(0, 0, 0); |
218 | 218 | return intval($date->format('U')); |
@@ -230,15 +230,15 @@ discard block |
||
230 | 230 | /** @var \OC\DateTimeFormatter $formatter */ |
231 | 231 | $formatter = \OC::$server->query('DateTimeFormatter'); |
232 | 232 | |
233 | - if ($dateOnly){ |
|
233 | + if ($dateOnly) { |
|
234 | 234 | return $formatter->formatDateSpan($timestamp, $fromTime); |
235 | 235 | } |
236 | 236 | return $formatter->formatTimeSpan($timestamp, $fromTime); |
237 | 237 | } |
238 | 238 | |
239 | -function html_select_options($options, $selected, $params=array()) { |
|
239 | +function html_select_options($options, $selected, $params = array()) { |
|
240 | 240 | if (!is_array($selected)) { |
241 | - $selected=array($selected); |
|
241 | + $selected = array($selected); |
|
242 | 242 | } |
243 | 243 | if (isset($params['combine']) && $params['combine']) { |
244 | 244 | $options = array_combine($options, $options); |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | $label_name = $params['label']; |
252 | 252 | } |
253 | 253 | $html = ''; |
254 | - foreach($options as $value => $label) { |
|
254 | + foreach ($options as $value => $label) { |
|
255 | 255 | if ($value_name && is_array($label)) { |
256 | 256 | $value = $label[$value_name]; |
257 | 257 | } |
@@ -259,7 +259,7 @@ discard block |
||
259 | 259 | $label = $label[$label_name]; |
260 | 260 | } |
261 | 261 | $select = in_array($value, $selected) ? ' selected="selected"' : ''; |
262 | - $html .= '<option value="' . \OCP\Util::sanitizeHTML($value) . '"' . $select . '>' . \OCP\Util::sanitizeHTML($label) . '</option>'."\n"; |
|
262 | + $html .= '<option value="'.\OCP\Util::sanitizeHTML($value).'"'.$select.'>'.\OCP\Util::sanitizeHTML($label).'</option>'."\n"; |
|
263 | 263 | } |
264 | 264 | return $html; |
265 | 265 | } |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | header('X-Accel-Buffering: no'); |
61 | 61 | $this->fallback = isset($_GET['fallback']) and $_GET['fallback'] == 'true'; |
62 | 62 | if ($this->fallback) { |
63 | - $this->fallBackId = (int)$_GET['fallback_id']; |
|
63 | + $this->fallBackId = (int) $_GET['fallback_id']; |
|
64 | 64 | /** |
65 | 65 | * FIXME: The default content-security-policy of ownCloud forbids inline |
66 | 66 | * JavaScript for security reasons. IE starting on Windows 10 will |
@@ -73,11 +73,11 @@ discard block |
||
73 | 73 | */ |
74 | 74 | header("Content-Security-Policy: default-src 'none'; script-src 'unsafe-inline'"); |
75 | 75 | header("Content-Type: text/html"); |
76 | - echo str_repeat('<span></span>' . PHP_EOL, 10); //dummy data to keep IE happy |
|
76 | + echo str_repeat('<span></span>'.PHP_EOL, 10); //dummy data to keep IE happy |
|
77 | 77 | } else { |
78 | 78 | header("Content-Type: text/event-stream"); |
79 | 79 | } |
80 | - if(!\OC::$server->getRequest()->passesStrictCookieCheck()) { |
|
80 | + if (!\OC::$server->getRequest()->passesStrictCookieCheck()) { |
|
81 | 81 | header('Location: '.\OC::$WEBROOT); |
82 | 82 | exit(); |
83 | 83 | } |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | */ |
101 | 101 | public function send($type, $data = null) { |
102 | 102 | if ($data and !preg_match('/^[A-Za-z0-9_]+$/', $type)) { |
103 | - throw new BadMethodCallException('Type needs to be alphanumeric ('. $type .')'); |
|
103 | + throw new BadMethodCallException('Type needs to be alphanumeric ('.$type.')'); |
|
104 | 104 | } |
105 | 105 | $this->init(); |
106 | 106 | if (is_null($data)) { |
@@ -109,13 +109,13 @@ discard block |
||
109 | 109 | } |
110 | 110 | if ($this->fallback) { |
111 | 111 | $response = '<script type="text/javascript">window.parent.OC.EventSource.fallBackCallBack(' |
112 | - . $this->fallBackId . ',"' . $type . '",' . OCP\JSON::encode($data) . ')</script>' . PHP_EOL; |
|
112 | + . $this->fallBackId.',"'.$type.'",'.OCP\JSON::encode($data).')</script>'.PHP_EOL; |
|
113 | 113 | echo $response; |
114 | 114 | } else { |
115 | 115 | if ($type) { |
116 | - echo 'event: ' . $type . PHP_EOL; |
|
116 | + echo 'event: '.$type.PHP_EOL; |
|
117 | 117 | } |
118 | - echo 'data: ' . OCP\JSON::encode($data) . PHP_EOL; |
|
118 | + echo 'data: '.OCP\JSON::encode($data).PHP_EOL; |
|
119 | 119 | } |
120 | 120 | echo PHP_EOL; |
121 | 121 | flush(); |