Fix author

This commit is contained in:
Dennis Eichhorn 2017-10-16 11:29:21 +02:00
parent 7c2ebba47b
commit 5261ed4b0f

View File

@ -34,7 +34,6 @@ interface SocketInterface
* @param int $port Port * @param int $port Port
* *
* @since 1.0.0 * @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
*/ */
public function create(string $ip, int $port); public function create(string $ip, int $port);
@ -42,7 +41,6 @@ interface SocketInterface
* Close socket. * Close socket.
* *
* @since 1.0.0 * @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
*/ */
public function close(); public function close();
@ -50,7 +48,6 @@ interface SocketInterface
* Run socket. * Run socket.
* *
* @since 1.0.0 * @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
*/ */
public function run(); public function run();
} }