Continued:
[core.git] / inc / main / classes / streams / crypto / class_NullCryptoStream.php
index c42e6d1fbefed0b1d384a343c8efcd97b7c7a478..a2f33c2cf305747f6a0810272ed08fca6c5a92ef 100644 (file)
@@ -1,4 +1,7 @@
 <?php
+// Own namespace
+namespace CoreFramework\Stream\Crypto;
+
 /**
  * A null-encryption stream does not encrypt anything but can be used if e.e.
  * mcrypt is not installed.
@@ -86,7 +89,5 @@ class NullCryptoStream extends BaseStream implements EncryptableStream {
                self::createDebugInstance(__CLASS__)->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.');
                throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
        }
-}
 
-// [EOF]
-?>
+}