From 06c4c3ddd8b8c54c56739af1b36e14d2ee8192a8 Mon Sep 17 00:00:00 2001 From: Gerrit Drost Date: Mon, 19 May 2014 09:36:28 +0200 Subject: [PATCH] PHPDoc formatting fix --- src/Ratchet/App.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Ratchet/App.php b/src/Ratchet/App.php index d9baff0..229a448 100644 --- a/src/Ratchet/App.php +++ b/src/Ratchet/App.php @@ -54,8 +54,8 @@ class App { * @param string $address IP address to bind to. Default is localhost/proxy only. '0.0.0.0' for any machine * @param array $flashAllowedHosts associative array with hostnames as key and ports as value. These domains are the domains the flash websocket fallback may connect from * @param int $flashPort the port the flash cross-domain-policy file will be hosted on - * @param string $flashAddress the IP address the flash cross-domain-policy server will bind to - * @param LoopInterface $loop Specific React\EventLoop to bind the application to. null will create one for you. + * @param string $flashAddress the IP address the flash cross-domain-policy server will bind to + * @param LoopInterface $loop Specific React\EventLoop to bind the application to. null will create one for you. */ public function __construct($httpHost = 'localhost', $port = 8080, $address = '127.0.0.1', $flashAllowedHosts = false, $flashPort = 8843, $flashAddress = '0.0.0.0', LoopInterface $loop = null) {