summaryrefslogtreecommitdiffstats
path: root/lib/eventsource.php
diff options
context:
space:
mode:
authorFelix Moeller <mail@felixmoeller.de>2012-10-23 00:28:12 +0200
committerFelix Moeller <mail@felixmoeller.de>2012-10-23 00:28:12 +0200
commit6a00a6b9ed49f9a9da044772e7ca7f3506672100 (patch)
tree2c0b0a57af5befe1c8153296cbcad3ff7c6ff4cf /lib/eventsource.php
parent03581ef463184081f8faa3f86bb6d21ee8bbc66d (diff)
downloadnextcloud-server-6a00a6b9ed49f9a9da044772e7ca7f3506672100.tar.gz
nextcloud-server-6a00a6b9ed49f9a9da044772e7ca7f3506672100.zip
Make Jenkins more happy.
This is NoSpaceAfterComma
Diffstat (limited to 'lib/eventsource.php')
-rw-r--r--lib/eventsource.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/eventsource.php b/lib/eventsource.php
index 900b5b101e6..3bada131bdd 100644
--- a/lib/eventsource.php
+++ b/lib/eventsource.php
@@ -38,7 +38,7 @@ class OC_EventSource{
if($this->fallback) {
$this->fallBackId=$_GET['fallback_id'];
header("Content-Type: text/html");
- echo str_repeat('<span></span>'.PHP_EOL,10); //dummy data to keep IE happy
+ echo str_repeat('<span></span>'.PHP_EOL, 10); //dummy data to keep IE happy
}else{
header("Content-Type: text/event-stream");
}
@@ -78,6 +78,6 @@ class OC_EventSource{
* close the connection of the even source
*/
public function close() {
- $this->send('__internal__','close');//server side closing can be an issue, let the client do it
+ $this->send('__internal__', 'close');//server side closing can be an issue, let the client do it
}
-} \ No newline at end of file
+}