diff --git a/src/Ratchet/AbstractConnectionDecorator.php b/src/Ratchet/AbstractConnectionDecorator.php
index 8db272a..4474307 100644
--- a/src/Ratchet/AbstractConnectionDecorator.php
+++ b/src/Ratchet/AbstractConnectionDecorator.php
@@ -38,4 +38,4 @@ abstract class AbstractConnectionDecorator implements ConnectionInterface {
     public function __unset($name) {
         unset($this->wrappedConn->$name);
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/App.php b/src/Ratchet/App.php
index 99deb4e..da634af 100644
--- a/src/Ratchet/App.php
+++ b/src/Ratchet/App.php
@@ -128,4 +128,4 @@ class App {
     public function run() {
         $this->_server->run();
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/ComponentInterface.php b/src/Ratchet/ComponentInterface.php
index 35a9fcb..37e41b1 100644
--- a/src/Ratchet/ComponentInterface.php
+++ b/src/Ratchet/ComponentInterface.php
@@ -28,4 +28,4 @@ interface ComponentInterface {
      * @throws \Exception
      */
     function onError(ConnectionInterface $conn, \Exception $e);
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/ConnectionInterface.php b/src/Ratchet/ConnectionInterface.php
index 5cf8e71..8741ed5 100644
--- a/src/Ratchet/ConnectionInterface.php
+++ b/src/Ratchet/ConnectionInterface.php
@@ -23,4 +23,4 @@ interface ConnectionInterface {
      * Close the connection
      */
     function close();
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Http/Guzzle/Http/Message/RequestFactory.php b/src/Ratchet/Http/Guzzle/Http/Message/RequestFactory.php
index 7457871..5a6d75e 100644
--- a/src/Ratchet/Http/Guzzle/Http/Message/RequestFactory.php
+++ b/src/Ratchet/Http/Guzzle/Http/Message/RequestFactory.php
@@ -31,4 +31,4 @@ class RequestFactory extends GuzzleRequestFactory {
 
         return $request;
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Http/HttpRequestParser.php b/src/Ratchet/Http/HttpRequestParser.php
index c6296bc..cbb5bbd 100644
--- a/src/Ratchet/Http/HttpRequestParser.php
+++ b/src/Ratchet/Http/HttpRequestParser.php
@@ -53,4 +53,4 @@ class HttpRequestParser implements MessageInterface {
     public function isEom($message) {
         return (boolean)strpos($message, static::EOM);
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Http/OriginCheck.php b/src/Ratchet/Http/OriginCheck.php
index 8d5f7a1..640d3c7 100644
--- a/src/Ratchet/Http/OriginCheck.php
+++ b/src/Ratchet/Http/OriginCheck.php
@@ -76,4 +76,4 @@ class OriginCheck implements HttpServerInterface {
         $conn->send((string)$response);
         $conn->close();
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Http/Router.php b/src/Ratchet/Http/Router.php
index 8e6611e..6909ad2 100644
--- a/src/Ratchet/Http/Router.php
+++ b/src/Ratchet/Http/Router.php
@@ -89,4 +89,4 @@ class Router implements HttpServerInterface {
         $conn->send((string)$response);
         $conn->close();
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/MessageComponentInterface.php b/src/Ratchet/MessageComponentInterface.php
index ee99547..b4a92e2 100644
--- a/src/Ratchet/MessageComponentInterface.php
+++ b/src/Ratchet/MessageComponentInterface.php
@@ -2,4 +2,4 @@
 namespace Ratchet;
 
 interface MessageComponentInterface extends ComponentInterface, MessageInterface {
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/MessageInterface.php b/src/Ratchet/MessageInterface.php
index a8ef91b..1486323 100644
--- a/src/Ratchet/MessageInterface.php
+++ b/src/Ratchet/MessageInterface.php
@@ -9,4 +9,4 @@ interface MessageInterface {
      * @throws \Exception
      */
     function onMessage(ConnectionInterface $from, $msg);
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Server/EchoServer.php b/src/Ratchet/Server/EchoServer.php
index 4011d66..2918e73 100644
--- a/src/Ratchet/Server/EchoServer.php
+++ b/src/Ratchet/Server/EchoServer.php
@@ -20,4 +20,4 @@ class EchoServer implements MessageComponentInterface {
     public function onError(ConnectionInterface $conn, \Exception $e) {
         $conn->close();
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Server/FlashPolicy.php b/src/Ratchet/Server/FlashPolicy.php
index f0ee26f..4997362 100644
--- a/src/Ratchet/Server/FlashPolicy.php
+++ b/src/Ratchet/Server/FlashPolicy.php
@@ -185,4 +185,4 @@ class FlashPolicy implements MessageComponentInterface {
     public function validatePorts($port) {
         return (bool)preg_match('/^(\*|(\d+[,-]?)*\d+)$/', $port);
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Server/IoConnection.php b/src/Ratchet/Server/IoConnection.php
index 0bc63a9..9f864bb 100644
--- a/src/Ratchet/Server/IoConnection.php
+++ b/src/Ratchet/Server/IoConnection.php
@@ -35,4 +35,4 @@ class IoConnection implements ConnectionInterface {
     public function close() {
         $this->conn->end();
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Server/IpBlackList.php b/src/Ratchet/Server/IpBlackList.php
index e4ed24e..9342254 100644
--- a/src/Ratchet/Server/IpBlackList.php
+++ b/src/Ratchet/Server/IpBlackList.php
@@ -108,4 +108,4 @@ class IpBlackList implements MessageComponentInterface {
             $this->_decorating->onError($conn, $e);
         }
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Session/Serialize/HandlerInterface.php b/src/Ratchet/Session/Serialize/HandlerInterface.php
index f1c7c0c..b83635f 100644
--- a/src/Ratchet/Session/Serialize/HandlerInterface.php
+++ b/src/Ratchet/Session/Serialize/HandlerInterface.php
@@ -13,4 +13,4 @@ interface HandlerInterface {
      * @return array
      */
     function unserialize($raw);
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Session/Serialize/PhpBinaryHandler.php b/src/Ratchet/Session/Serialize/PhpBinaryHandler.php
index 3f1b350..ba80551 100644
--- a/src/Ratchet/Session/Serialize/PhpBinaryHandler.php
+++ b/src/Ratchet/Session/Serialize/PhpBinaryHandler.php
@@ -30,4 +30,4 @@ class PhpBinaryHandler implements HandlerInterface {
 
         return $returnData;
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Session/Serialize/PhpHandler.php b/src/Ratchet/Session/Serialize/PhpHandler.php
index fb0631c..8fb5308 100644
--- a/src/Ratchet/Session/Serialize/PhpHandler.php
+++ b/src/Ratchet/Session/Serialize/PhpHandler.php
@@ -35,4 +35,4 @@ class PhpHandler implements HandlerInterface {
 
         return $returnData;
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Session/SessionProvider.php b/src/Ratchet/Session/SessionProvider.php
index 42be40a..8aefc96 100644
--- a/src/Ratchet/Session/SessionProvider.php
+++ b/src/Ratchet/Session/SessionProvider.php
@@ -165,4 +165,4 @@ class SessionProvider implements MessageComponentInterface, WsServerInterface {
     protected function toClassCase($langDef) {
         return str_replace(' ', '', ucwords(str_replace('_', ' ', $langDef)));
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Session/Storage/Proxy/VirtualProxy.php b/src/Ratchet/Session/Storage/Proxy/VirtualProxy.php
index a549d4e..b478d03 100644
--- a/src/Ratchet/Session/Storage/Proxy/VirtualProxy.php
+++ b/src/Ratchet/Session/Storage/Proxy/VirtualProxy.php
@@ -51,4 +51,4 @@ class VirtualProxy extends SessionHandlerProxy {
     public function setName($name) {
         throw new \RuntimeException("Can not change session name in VirtualProxy");
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Session/Storage/VirtualSessionStorage.php b/src/Ratchet/Session/Storage/VirtualSessionStorage.php
index dc16388..c86dcab 100644
--- a/src/Ratchet/Session/Storage/VirtualSessionStorage.php
+++ b/src/Ratchet/Session/Storage/VirtualSessionStorage.php
@@ -79,4 +79,4 @@ class VirtualSessionStorage extends NativeSessionStorage {
 
         $this->saveHandler = $saveHandler;
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Wamp/Exception.php b/src/Ratchet/Wamp/Exception.php
index 9b0ca24..6c824da 100644
--- a/src/Ratchet/Wamp/Exception.php
+++ b/src/Ratchet/Wamp/Exception.php
@@ -2,4 +2,4 @@
 namespace Ratchet\Wamp;
 
 class Exception extends \Exception {
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Wamp/JsonException.php b/src/Ratchet/Wamp/JsonException.php
index dfb8da9..8f05d28 100644
--- a/src/Ratchet/Wamp/JsonException.php
+++ b/src/Ratchet/Wamp/JsonException.php
@@ -28,4 +28,4 @@ class JsonException extends Exception {
 
         parent::__construct($msg, $code);
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Wamp/ServerProtocol.php b/src/Ratchet/Wamp/ServerProtocol.php
index 7842c82..0a5805e 100644
--- a/src/Ratchet/Wamp/ServerProtocol.php
+++ b/src/Ratchet/Wamp/ServerProtocol.php
@@ -154,4 +154,4 @@ class ServerProtocol implements MessageComponentInterface, WsServerInterface {
     public function onError(ConnectionInterface $conn, \Exception $e) {
         return $this->_decorating->onError($this->connections[$conn], $e);
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Wamp/TopicManager.php b/src/Ratchet/Wamp/TopicManager.php
index 6020791..bceee73 100644
--- a/src/Ratchet/Wamp/TopicManager.php
+++ b/src/Ratchet/Wamp/TopicManager.php
@@ -111,4 +111,4 @@ class TopicManager implements WsServerInterface, WampServerInterface {
 
         return $this->topicLookup[$topic];
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Wamp/WampServer.php b/src/Ratchet/Wamp/WampServer.php
index 9e7951f..7644fdc 100644
--- a/src/Ratchet/Wamp/WampServer.php
+++ b/src/Ratchet/Wamp/WampServer.php
@@ -66,4 +66,4 @@ class WampServer implements MessageComponentInterface, WsServerInterface {
     public function getSubProtocols() {
         return $this->wampProtocol->getSubProtocols();
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/Wamp/WampServerInterface.php b/src/Ratchet/Wamp/WampServerInterface.php
index bef93b1..15c521d 100644
--- a/src/Ratchet/Wamp/WampServerInterface.php
+++ b/src/Ratchet/Wamp/WampServerInterface.php
@@ -40,4 +40,4 @@ interface WampServerInterface extends ComponentInterface {
      * @param array                        $eligible A list of session Ids the message should be send to (whitelist)
      */
     function onPublish(ConnectionInterface $conn, $topic, $event, array $exclude, array $eligible);
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/WebSocket/Encoding/ToggleableValidator.php b/src/Ratchet/WebSocket/Encoding/ToggleableValidator.php
index 1a3965c..edf14bc 100644
--- a/src/Ratchet/WebSocket/Encoding/ToggleableValidator.php
+++ b/src/Ratchet/WebSocket/Encoding/ToggleableValidator.php
@@ -28,4 +28,4 @@ class ToggleableValidator implements ValidatorInterface {
 
         return $this->validator->checkEncoding($str, $encoding);
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/WebSocket/Encoding/Validator.php b/src/Ratchet/WebSocket/Encoding/Validator.php
index 0dc8a24..3b02230 100644
--- a/src/Ratchet/WebSocket/Encoding/Validator.php
+++ b/src/Ratchet/WebSocket/Encoding/Validator.php
@@ -90,4 +90,4 @@ class Validator {
 
         return true;
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/WebSocket/Encoding/ValidatorInterface.php b/src/Ratchet/WebSocket/Encoding/ValidatorInterface.php
index c5769e8..374f220 100644
--- a/src/Ratchet/WebSocket/Encoding/ValidatorInterface.php
+++ b/src/Ratchet/WebSocket/Encoding/ValidatorInterface.php
@@ -9,4 +9,4 @@ interface ValidatorInterface {
      * @return bool
      */
     function checkEncoding($str, $encoding);
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/WebSocket/Version/DataInterface.php b/src/Ratchet/WebSocket/Version/DataInterface.php
index ef44565..bec1211 100644
--- a/src/Ratchet/WebSocket/Version/DataInterface.php
+++ b/src/Ratchet/WebSocket/Version/DataInterface.php
@@ -25,4 +25,4 @@ interface DataInterface {
      * @return string
      */
     function getContents();
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/WebSocket/Version/FrameInterface.php b/src/Ratchet/WebSocket/Version/FrameInterface.php
index 083b6d4..4eafb82 100644
--- a/src/Ratchet/WebSocket/Version/FrameInterface.php
+++ b/src/Ratchet/WebSocket/Version/FrameInterface.php
@@ -35,4 +35,4 @@ interface FrameInterface extends DataInterface {
      * @return string
      */
     function getMaskingKey();
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/WebSocket/Version/Hixie76.php b/src/Ratchet/WebSocket/Version/Hixie76.php
index 8b0e2c4..f521992 100644
--- a/src/Ratchet/WebSocket/Version/Hixie76.php
+++ b/src/Ratchet/WebSocket/Version/Hixie76.php
@@ -117,4 +117,4 @@ class Hixie76 implements VersionInterface {
           . $code
         , true);
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/WebSocket/Version/Hixie76/Connection.php b/src/Ratchet/WebSocket/Version/Hixie76/Connection.php
index 82053eb..2a5f845 100644
--- a/src/Ratchet/WebSocket/Version/Hixie76/Connection.php
+++ b/src/Ratchet/WebSocket/Version/Hixie76/Connection.php
@@ -16,4 +16,4 @@ class Connection extends AbstractConnectionDecorator {
     public function close() {
         $this->getConnection()->close();
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/WebSocket/Version/Hixie76/Frame.php b/src/Ratchet/WebSocket/Version/Hixie76/Frame.php
index a172207..28eb90e 100644
--- a/src/Ratchet/WebSocket/Version/Hixie76/Frame.php
+++ b/src/Ratchet/WebSocket/Version/Hixie76/Frame.php
@@ -83,4 +83,4 @@ class Frame implements FrameInterface {
     public function extractOverflow() {
         return '';
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/WebSocket/Version/HyBi10.php b/src/Ratchet/WebSocket/Version/HyBi10.php
index 70329c6..a53d338 100644
--- a/src/Ratchet/WebSocket/Version/HyBi10.php
+++ b/src/Ratchet/WebSocket/Version/HyBi10.php
@@ -12,4 +12,4 @@ class HyBi10 extends RFC6455 {
     public function getVersionNumber() {
         return 6;
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/WebSocket/Version/MessageInterface.php b/src/Ratchet/WebSocket/Version/MessageInterface.php
index ff29163..476c091 100644
--- a/src/Ratchet/WebSocket/Version/MessageInterface.php
+++ b/src/Ratchet/WebSocket/Version/MessageInterface.php
@@ -12,4 +12,4 @@ interface MessageInterface extends DataInterface {
      * @return int
      */
     function getOpcode();
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/WebSocket/Version/RFC6455/Connection.php b/src/Ratchet/WebSocket/Version/RFC6455/Connection.php
index 2d89493..5bfa4a9 100644
--- a/src/Ratchet/WebSocket/Version/RFC6455/Connection.php
+++ b/src/Ratchet/WebSocket/Version/RFC6455/Connection.php
@@ -30,4 +30,4 @@ class Connection extends AbstractConnectionDecorator {
 
         $this->getConnection()->close();
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/WebSocket/Version/RFC6455/Frame.php b/src/Ratchet/WebSocket/Version/RFC6455/Frame.php
index 146bd06..ea8a401 100644
--- a/src/Ratchet/WebSocket/Version/RFC6455/Frame.php
+++ b/src/Ratchet/WebSocket/Version/RFC6455/Frame.php
@@ -447,4 +447,4 @@ class Frame implements FrameInterface {
 
         return '';
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/WebSocket/Version/RFC6455/HandshakeVerifier.php b/src/Ratchet/WebSocket/Version/RFC6455/HandshakeVerifier.php
index 41057cc..fd783f6 100644
--- a/src/Ratchet/WebSocket/Version/RFC6455/HandshakeVerifier.php
+++ b/src/Ratchet/WebSocket/Version/RFC6455/HandshakeVerifier.php
@@ -134,4 +134,4 @@ class HandshakeVerifier {
      */
     public function verifyExtensions($val) {
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/WebSocket/Version/RFC6455/Message.php b/src/Ratchet/WebSocket/Version/RFC6455/Message.php
index fd20047..a839f2d 100644
--- a/src/Ratchet/WebSocket/Version/RFC6455/Message.php
+++ b/src/Ratchet/WebSocket/Version/RFC6455/Message.php
@@ -104,4 +104,4 @@ class Message implements MessageInterface, \Countable {
 
         return $buffer;
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/WebSocket/Version/VersionInterface.php b/src/Ratchet/WebSocket/Version/VersionInterface.php
index ddc1170..5bbe534 100644
--- a/src/Ratchet/WebSocket/Version/VersionInterface.php
+++ b/src/Ratchet/WebSocket/Version/VersionInterface.php
@@ -54,4 +54,4 @@ interface VersionInterface extends MessageInterface {
      * @todo Change to use other classes, this will be removed eventually
      */
     //function frame($message, $mask = true);
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/WebSocket/VersionManager.php b/src/Ratchet/WebSocket/VersionManager.php
index ec81a9d..f514e1b 100644
--- a/src/Ratchet/WebSocket/VersionManager.php
+++ b/src/Ratchet/WebSocket/VersionManager.php
@@ -87,4 +87,4 @@ class VersionManager {
     public function getSupportedVersionString() {
         return $this->versionString;
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/WebSocket/WsServer.php b/src/Ratchet/WebSocket/WsServer.php
index c76fd3f..8ad6e4e 100644
--- a/src/Ratchet/WebSocket/WsServer.php
+++ b/src/Ratchet/WebSocket/WsServer.php
@@ -224,4 +224,4 @@ class WsServer implements HttpServerInterface {
         $conn->send((string)$response);
         $conn->close();
     }
-}
\ No newline at end of file
+}
diff --git a/src/Ratchet/WebSocket/WsServerInterface.php b/src/Ratchet/WebSocket/WsServerInterface.php
index 24c7ab9..03b0710 100644
--- a/src/Ratchet/WebSocket/WsServerInterface.php
+++ b/src/Ratchet/WebSocket/WsServerInterface.php
@@ -11,4 +11,4 @@ interface WsServerInterface {
      * @temporary This method may be removed in future version (note that will not break code, just make some code obsolete)
      */
     function getSubProtocols();
-}
\ No newline at end of file
+}
diff --git a/tests/helpers/Ratchet/AbstractMessageComponentTestCase.php b/tests/helpers/Ratchet/AbstractMessageComponentTestCase.php
index 2ab458e..8c298e5 100644
--- a/tests/helpers/Ratchet/AbstractMessageComponentTestCase.php
+++ b/tests/helpers/Ratchet/AbstractMessageComponentTestCase.php
@@ -47,4 +47,4 @@ abstract class AbstractMessageComponentTestCase extends \PHPUnit_Framework_TestC
         $this->_app->expects($this->once())->method('onMessage')->with($this->isExpectedConnection(), $value);
         $this->_serv->onMessage($this->_conn, $value);
     }
-}
\ No newline at end of file
+}
diff --git a/tests/helpers/Ratchet/Mock/Component.php b/tests/helpers/Ratchet/Mock/Component.php
index d2ef27d..e152988 100644
--- a/tests/helpers/Ratchet/Mock/Component.php
+++ b/tests/helpers/Ratchet/Mock/Component.php
@@ -32,4 +32,4 @@ class Component implements MessageComponentInterface, WsServerInterface {
     public function getSubProtocols() {
         return $this->protocols;
     }
-}
\ No newline at end of file
+}
diff --git a/tests/helpers/Ratchet/Mock/Connection.php b/tests/helpers/Ratchet/Mock/Connection.php
index 525487f..5918296 100644
--- a/tests/helpers/Ratchet/Mock/Connection.php
+++ b/tests/helpers/Ratchet/Mock/Connection.php
@@ -17,4 +17,4 @@ class Connection implements ConnectionInterface {
     public function close() {
         $this->last[__FUNCTION__] = true;
     }
-}
\ No newline at end of file
+}
diff --git a/tests/helpers/Ratchet/Mock/ConnectionDecorator.php b/tests/helpers/Ratchet/Mock/ConnectionDecorator.php
index c8a0d17..5570c07 100644
--- a/tests/helpers/Ratchet/Mock/ConnectionDecorator.php
+++ b/tests/helpers/Ratchet/Mock/ConnectionDecorator.php
@@ -19,4 +19,4 @@ class ConnectionDecorator extends AbstractConnectionDecorator {
 
         $this->getConnection()->close();
     }
-}
\ No newline at end of file
+}
diff --git a/tests/helpers/Ratchet/Mock/WampComponent.php b/tests/helpers/Ratchet/Mock/WampComponent.php
index 87af27c..cd526cb 100644
--- a/tests/helpers/Ratchet/Mock/WampComponent.php
+++ b/tests/helpers/Ratchet/Mock/WampComponent.php
@@ -40,4 +40,4 @@ class WampComponent implements WampServerInterface, WsServerInterface {
     public function onError(ConnectionInterface $conn, \Exception $e) {
         $this->last[__FUNCTION__] = func_get_args();
     }
-}
\ No newline at end of file
+}
diff --git a/tests/helpers/Ratchet/NullComponent.php b/tests/helpers/Ratchet/NullComponent.php
index 4352830..90def21 100644
--- a/tests/helpers/Ratchet/NullComponent.php
+++ b/tests/helpers/Ratchet/NullComponent.php
@@ -25,4 +25,4 @@ class NullComponent implements MessageComponentInterface, WsServerInterface, Wam
     public function getSubProtocols() {
         return array();
     }
-}
\ No newline at end of file
+}
diff --git a/tests/helpers/Ratchet/Wamp/Stub/WsWampServerInterface.php b/tests/helpers/Ratchet/Wamp/Stub/WsWampServerInterface.php
index 45cb35f..197bbd3 100644
--- a/tests/helpers/Ratchet/Wamp/Stub/WsWampServerInterface.php
+++ b/tests/helpers/Ratchet/Wamp/Stub/WsWampServerInterface.php
@@ -4,4 +4,4 @@ use Ratchet\WebSocket\WsServerInterface;
 use Ratchet\Wamp\WampServerInterface;
 
 interface WsWampServerInterface extends WsServerInterface, WampServerInterface {
-}
\ No newline at end of file
+}
diff --git a/tests/helpers/Ratchet/WebSocket/Stub/WsMessageComponentInterface.php b/tests/helpers/Ratchet/WebSocket/Stub/WsMessageComponentInterface.php
index 40e6928..ef88325 100644
--- a/tests/helpers/Ratchet/WebSocket/Stub/WsMessageComponentInterface.php
+++ b/tests/helpers/Ratchet/WebSocket/Stub/WsMessageComponentInterface.php
@@ -4,4 +4,4 @@ use Ratchet\MessageComponentInterface;
 use Ratchet\WebSocket\WsServerInterface;
 
 interface WsMessageComponentInterface extends MessageComponentInterface, WsServerInterface {
-}
\ No newline at end of file
+}
diff --git a/tests/integration/GuzzleTest.php b/tests/integration/GuzzleTest.php
index 6d3a544..5e4d8aa 100644
--- a/tests/integration/GuzzleTest.php
+++ b/tests/integration/GuzzleTest.php
@@ -50,4 +50,4 @@ class GuzzleTest extends \PHPUnit_Framework_TestCase {
         $ref = new \ReflectionMethod('Guzzle\Http\Message\RequestFactory', 'create');
         $this->assertEquals(2, $ref->getNumberOfRequiredParameters());
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/AbstractConnectionDecoratorTest.php b/tests/unit/AbstractConnectionDecoratorTest.php
index 905cce1..0887d3e 100644
--- a/tests/unit/AbstractConnectionDecoratorTest.php
+++ b/tests/unit/AbstractConnectionDecoratorTest.php
@@ -144,4 +144,4 @@ class AbstractConnectionDecoratorTest extends \PHPUnit_Framework_TestCase {
         $this->setExpectedException('PHPUnit_Framework_Error');
         $var = $this->l2->nonExistant;
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/Http/Guzzle/Http/Message/RequestFactoryTest.php b/tests/unit/Http/Guzzle/Http/Message/RequestFactoryTest.php
index 8cada8c..7860f72 100644
--- a/tests/unit/Http/Guzzle/Http/Message/RequestFactoryTest.php
+++ b/tests/unit/Http/Guzzle/Http/Message/RequestFactoryTest.php
@@ -64,4 +64,4 @@ class RequestFactoryTest extends \PHPUnit_Framework_TestCase {
 
         $this->assertEquals($parts['body'], (string)$object->getBody());
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/Http/HttpRequestParserTest.php b/tests/unit/Http/HttpRequestParserTest.php
index 89a0e80..4df7d8d 100644
--- a/tests/unit/Http/HttpRequestParserTest.php
+++ b/tests/unit/Http/HttpRequestParserTest.php
@@ -48,4 +48,4 @@ class HttpRequestParserTest extends \PHPUnit_Framework_TestCase {
 
         $this->assertInstanceOf('\Guzzle\Http\Message\RequestInterface', $return);
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/Http/HttpServerTest.php b/tests/unit/Http/HttpServerTest.php
index 2c069f1..7041d66 100644
--- a/tests/unit/Http/HttpServerTest.php
+++ b/tests/unit/Http/HttpServerTest.php
@@ -61,4 +61,4 @@ class HttpServerTest extends AbstractMessageComponentTestCase {
 
         $this->_serv->onMessage($this->_conn, "GET / HTTP/1.1");
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/Server/FlashPolicyComponentTest.php b/tests/unit/Server/FlashPolicyComponentTest.php
index 67f88a7..38fc96a 100644
--- a/tests/unit/Server/FlashPolicyComponentTest.php
+++ b/tests/unit/Server/FlashPolicyComponentTest.php
@@ -149,4 +149,4 @@ class FlashPolicyTest extends \PHPUnit_Framework_TestCase {
         $conn = $this->getMock('\Ratchet\ConnectionInterface');
         $this->_policy->onClose($conn);
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/Server/IoConnectionTest.php b/tests/unit/Server/IoConnectionTest.php
index 0cb7fb4..07130f6 100644
--- a/tests/unit/Server/IoConnectionTest.php
+++ b/tests/unit/Server/IoConnectionTest.php
@@ -29,4 +29,4 @@ class IoConnectionTest extends \PHPUnit_Framework_TestCase {
     public function testSendReturnsSelf() {
         $this->assertSame($this->conn, $this->conn->send('fluent interface'));
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/Server/IoServerTest.php b/tests/unit/Server/IoServerTest.php
index 2b0258c..808098a 100644
--- a/tests/unit/Server/IoServerTest.php
+++ b/tests/unit/Server/IoServerTest.php
@@ -115,4 +115,4 @@ class IoServerTest extends \PHPUnit_Framework_TestCase {
 
         $this->server->handleData('f', $conn);
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/Server/IpBlackListComponentTest.php b/tests/unit/Server/IpBlackListComponentTest.php
index 419f077..90f4185 100644
--- a/tests/unit/Server/IpBlackListComponentTest.php
+++ b/tests/unit/Server/IpBlackListComponentTest.php
@@ -122,4 +122,4 @@ class IpBlackListTest extends \PHPUnit_Framework_TestCase {
 
         return $conn;
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/Session/Serialize/PhpHandlerTest.php b/tests/unit/Session/Serialize/PhpHandlerTest.php
index cf1ef48..4dddee9 100644
--- a/tests/unit/Session/Serialize/PhpHandlerTest.php
+++ b/tests/unit/Session/Serialize/PhpHandlerTest.php
@@ -33,4 +33,4 @@ class PhpHandlerTest extends \PHPUnit_Framework_TestCase {
     public function testUnserialize($in, $expected) {
         $this->assertEquals($expected, $this->_handler->unserialize($in));
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/Wamp/ServerProtocolTest.php b/tests/unit/Wamp/ServerProtocolTest.php
index 14a8b1e..3cc44f0 100644
--- a/tests/unit/Wamp/ServerProtocolTest.php
+++ b/tests/unit/Wamp/ServerProtocolTest.php
@@ -264,4 +264,4 @@ class ServerProtocolTest extends \PHPUnit_Framework_TestCase {
         $this->_comp->onOpen($conn);
         $this->_comp->onMessage($conn, $message);
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/Wamp/TopicManagerTest.php b/tests/unit/Wamp/TopicManagerTest.php
index 877f05f..0c31d9a 100644
--- a/tests/unit/Wamp/TopicManagerTest.php
+++ b/tests/unit/Wamp/TopicManagerTest.php
@@ -193,4 +193,4 @@ class TopicManagerTest extends \PHPUnit_Framework_TestCase {
 
         $this->assertEquals($subs, $mngr->getSubProtocols());
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/Wamp/WampConnectionTest.php b/tests/unit/Wamp/WampConnectionTest.php
index e33c166..adf59d5 100644
--- a/tests/unit/Wamp/WampConnectionTest.php
+++ b/tests/unit/Wamp/WampConnectionTest.php
@@ -74,4 +74,4 @@ class WampConnectionTest extends \PHPUnit_Framework_TestCase {
 
         $conn->close();
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/Wamp/WampServerTest.php b/tests/unit/Wamp/WampServerTest.php
index 02c81a6..626b1ce 100644
--- a/tests/unit/Wamp/WampServerTest.php
+++ b/tests/unit/Wamp/WampServerTest.php
@@ -46,4 +46,4 @@ class WampServerTest extends AbstractMessageComponentTestCase {
         $this->_conn->expects($this->once())->method('close');
         $this->_serv->onMessage($this->_conn, json_encode(array('valid' => 'json', 'invalid' => 'protocol')));
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/WebSocket/Version/Hixie76Test.php b/tests/unit/WebSocket/Version/Hixie76Test.php
index 07d863b..d09cdf7 100644
--- a/tests/unit/WebSocket/Version/Hixie76Test.php
+++ b/tests/unit/WebSocket/Version/Hixie76Test.php
@@ -80,4 +80,4 @@ class Hixie76Test extends \PHPUnit_Framework_TestCase {
         $mockApp->expects($this->once())->method('onOpen');
         $server->onMessage($mockConn, $body . $this->_crlf . $this->_crlf);
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/WebSocket/Version/HyBi10Test.php b/tests/unit/WebSocket/Version/HyBi10Test.php
index 74044df..1d9e8a9 100644
--- a/tests/unit/WebSocket/Version/HyBi10Test.php
+++ b/tests/unit/WebSocket/Version/HyBi10Test.php
@@ -64,4 +64,4 @@ class HyBi10Test extends \PHPUnit_Framework_TestCase {
 
         $this->assertEquals($string, $frame->getPayload());
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/WebSocket/Version/RFC6455/FrameTest.php b/tests/unit/WebSocket/Version/RFC6455/FrameTest.php
index ca4447c..3683b1c 100644
--- a/tests/unit/WebSocket/Version/RFC6455/FrameTest.php
+++ b/tests/unit/WebSocket/Version/RFC6455/FrameTest.php
@@ -500,4 +500,4 @@ class FrameTest extends \PHPUnit_Framework_TestCase {
 
         return $randomString;
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/WebSocket/Version/RFC6455/HandshakeVerifierTest.php b/tests/unit/WebSocket/Version/RFC6455/HandshakeVerifierTest.php
index cdaec6d..6761c32 100644
--- a/tests/unit/WebSocket/Version/RFC6455/HandshakeVerifierTest.php
+++ b/tests/unit/WebSocket/Version/RFC6455/HandshakeVerifierTest.php
@@ -167,4 +167,4 @@ class HandshakeVerifierTest extends \PHPUnit_Framework_TestCase {
     public function testVersionEquals13($expected, $in) {
         $this->assertEquals($expected, $this->_v->verifyVersion($in));
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/WebSocket/Version/RFC6455/MessageTest.php b/tests/unit/WebSocket/Version/RFC6455/MessageTest.php
index 4b72170..b2d21d2 100644
--- a/tests/unit/WebSocket/Version/RFC6455/MessageTest.php
+++ b/tests/unit/WebSocket/Version/RFC6455/MessageTest.php
@@ -60,4 +60,4 @@ class MessageTest extends \PHPUnit_Framework_TestCase {
 
         $this->assertEquals(28, $this->message->getPayloadLength());
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/WebSocket/Version/RFC6455Test.php b/tests/unit/WebSocket/Version/RFC6455Test.php
index 89a9ae6..86e5631 100644
--- a/tests/unit/WebSocket/Version/RFC6455Test.php
+++ b/tests/unit/WebSocket/Version/RFC6455Test.php
@@ -148,4 +148,4 @@ class RFC6455Test extends \PHPUnit_Framework_TestCase {
     public function testNewFrame() {
         $this->assertInstanceOf('\\Ratchet\\WebSocket\\Version\\RFC6455\\Frame', $this->version->newFrame());
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/WebSocket/VersionManagerTest.php b/tests/unit/WebSocket/VersionManagerTest.php
index 6083548..d9c55fe 100644
--- a/tests/unit/WebSocket/VersionManagerTest.php
+++ b/tests/unit/WebSocket/VersionManagerTest.php
@@ -88,4 +88,4 @@ class VersionManagerTest extends \PHPUnit_Framework_TestCase {
         $this->assertEquals(2, count($values));
         $this->assertFalse(array_search(0, $values));
     }
-}
\ No newline at end of file
+}
diff --git a/tests/unit/WebSocket/WsServerTest.php b/tests/unit/WebSocket/WsServerTest.php
index c923e16..3f4aa43 100644
--- a/tests/unit/WebSocket/WsServerTest.php
+++ b/tests/unit/WebSocket/WsServerTest.php
@@ -48,4 +48,4 @@ class WsServerTest extends \PHPUnit_Framework_TestCase {
 
         $this->assertSame($expected, $method->invokeArgs($this->serv, array($req)));
     }
-}
\ No newline at end of file
+}