diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-09-04 01:10:02 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-09-04 13:26:51 +0200 |
commit | fa3393674c854e884abf10d3b82dab03aca83c61 (patch) | |
tree | 0560b9ec8bf3ff28fb6cea81bfe4255f48e7157d /lib/public | |
parent | 8605e2e6a5ac637ed552d9469f3dc31717b4ea3e (diff) | |
download | nextcloud-server-fa3393674c854e884abf10d3b82dab03aca83c61.tar.gz nextcloud-server-fa3393674c854e884abf10d3b82dab03aca83c61.zip |
Better phpdoc and method naming
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/ieventsource.php | 2 | ||||
-rw-r--r-- | lib/public/iservercontainer.php | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/public/ieventsource.php b/lib/public/ieventsource.php index ea4bfc73d42..eb7853c5e90 100644 --- a/lib/public/ieventsource.php +++ b/lib/public/ieventsource.php @@ -13,6 +13,8 @@ namespace OCP; * includes a fallback for older browsers and IE * * use server side events with caution, to many open requests can hang the server + * + * The event source will initialize the connection to the client when the first data is sent */ interface IEventSource { /** diff --git a/lib/public/iservercontainer.php b/lib/public/iservercontainer.php index 24d8894d9fe..1abf0d9938d 100644 --- a/lib/public/iservercontainer.php +++ b/lib/public/iservercontainer.php @@ -237,9 +237,9 @@ interface IServerContainer { function getCertificateManager($user = null); /** - * Returns a search instance + * Create a new event source * * @return \OCP\IEventSource */ - function getEventSource(); + function createEventSource(); } |