From 93533ae45a33887a2f5cbaa28557147f883c2128 Mon Sep 17 00:00:00 2001 From: Simon Asika Date: Mon, 18 Jul 2016 11:05:31 +0000 Subject: [PATCH] Prepare for 3.0 release. --- Helper/UploadedFileHelper.php | 2 +- HttpServer.php | 2 +- Output/CompressException.php | 2 +- Output/HttpCompressor.php | 2 +- Output/NoHeaderOutput.php | 2 +- Output/StreamOutput.php | 2 +- Request/ServerRequestFactory.php | 2 +- Response/AbstractContentTypeResponse.php | 2 +- Response/EmptyResponse.php | 2 +- Response/HtmlResponse.php | 2 +- Response/JsonResponse.php | 2 +- Response/RedirectResponse.php | 2 +- Response/TextResponse.php | 2 +- Response/XmlResponse.php | 2 +- Test/Helper/HerderHelperTest.php | 2 +- Test/Helper/ResponseHelperTest.php | 2 +- Test/Helper/ServerHelperTest.php | 2 +- Test/Helper/StreamHelperTest.php | 2 +- Test/HttpServerTest.php | 2 +- Test/Mock/MockOutput.php | 2 +- Test/Output/HttpCompressorTest.php | 2 +- Test/Output/OutputTest.php | 2 +- Test/Output/StreamOutputTest.php | 2 +- Test/Request/ServerRequestFactoryTest.php | 2 +- Test/Response/AbstractContentTypeResponseTest.php | 2 +- Test/Response/ContentTypeResponseTest.php | 2 +- Test/Stub/StubContentTypeResponse.php | 2 +- Test/Stub/StubHttpCompressor.php | 2 +- Test/Stub/StubOutput.php | 2 +- Test/Stub/StubStreamOutput.php | 2 +- Test/WebHttpServerTest.php | 2 +- WebHttpServer.php | 2 +- 32 files changed, 32 insertions(+), 32 deletions(-) diff --git a/Helper/UploadedFileHelper.php b/Helper/UploadedFileHelper.php index 5069c26..136d458 100644 --- a/Helper/UploadedFileHelper.php +++ b/Helper/UploadedFileHelper.php @@ -11,7 +11,7 @@ /** * The UploadedFileHelper class. * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class UploadedFileHelper { diff --git a/HttpServer.php b/HttpServer.php index 4410f56..0dd33ec 100644 --- a/HttpServer.php +++ b/HttpServer.php @@ -18,7 +18,7 @@ /** * The Server class. * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class HttpServer { diff --git a/Output/CompressException.php b/Output/CompressException.php index 2b3698f..d6403a6 100644 --- a/Output/CompressException.php +++ b/Output/CompressException.php @@ -11,7 +11,7 @@ /** * The CompressException class. * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class CompressException extends \RuntimeException { diff --git a/Output/HttpCompressor.php b/Output/HttpCompressor.php index 047e473..c026c63 100644 --- a/Output/HttpCompressor.php +++ b/Output/HttpCompressor.php @@ -15,7 +15,7 @@ /** * The HttpCompressor class to support gzip encoding. * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class HttpCompressor { diff --git a/Output/NoHeaderOutput.php b/Output/NoHeaderOutput.php index 919d63a..b0a9e28 100644 --- a/Output/NoHeaderOutput.php +++ b/Output/NoHeaderOutput.php @@ -11,7 +11,7 @@ /** * The NoHeaderOutput class. * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class NoHeaderOutput extends Output { diff --git a/Output/StreamOutput.php b/Output/StreamOutput.php index b285015..7849c90 100644 --- a/Output/StreamOutput.php +++ b/Output/StreamOutput.php @@ -13,7 +13,7 @@ /** * The StreamOutput class. * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class StreamOutput extends Output { diff --git a/Request/ServerRequestFactory.php b/Request/ServerRequestFactory.php index ad9ee9f..8b8faa2 100644 --- a/Request/ServerRequestFactory.php +++ b/Request/ServerRequestFactory.php @@ -19,7 +19,7 @@ /** * The ServerRequestFactory class. * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class ServerRequestFactory { diff --git a/Response/AbstractContentTypeResponse.php b/Response/AbstractContentTypeResponse.php index 43cda9c..7f194ef 100644 --- a/Response/AbstractContentTypeResponse.php +++ b/Response/AbstractContentTypeResponse.php @@ -13,7 +13,7 @@ /** * An response object contains content-type handler. * - * @since {DEPLOY_VERSION} + * @since 3.0 */ abstract class AbstractContentTypeResponse extends Response { diff --git a/Response/EmptyResponse.php b/Response/EmptyResponse.php index e502507..b14468e 100644 --- a/Response/EmptyResponse.php +++ b/Response/EmptyResponse.php @@ -16,7 +16,7 @@ * * Always return empty data and is only readable. THe headers will still send. * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class EmptyResponse extends Response { diff --git a/Response/HtmlResponse.php b/Response/HtmlResponse.php index eb8de5f..d3c095e 100644 --- a/Response/HtmlResponse.php +++ b/Response/HtmlResponse.php @@ -11,7 +11,7 @@ /** * The HtmlResponse class. * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class HtmlResponse extends TextResponse { diff --git a/Response/JsonResponse.php b/Response/JsonResponse.php index 25b1cc0..2caf926 100644 --- a/Response/JsonResponse.php +++ b/Response/JsonResponse.php @@ -11,7 +11,7 @@ /** * The HtmlResponse class. * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class JsonResponse extends TextResponse { diff --git a/Response/RedirectResponse.php b/Response/RedirectResponse.php index 32b9422..5f1f5a4 100644 --- a/Response/RedirectResponse.php +++ b/Response/RedirectResponse.php @@ -14,7 +14,7 @@ /** * The RedirectResponse class. * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class RedirectResponse extends Response { diff --git a/Response/TextResponse.php b/Response/TextResponse.php index 28240c7..baaaaea 100644 --- a/Response/TextResponse.php +++ b/Response/TextResponse.php @@ -14,7 +14,7 @@ /** * The TextResponse class. * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class TextResponse extends AbstractContentTypeResponse { diff --git a/Response/XmlResponse.php b/Response/XmlResponse.php index 1738eeb..3464290 100644 --- a/Response/XmlResponse.php +++ b/Response/XmlResponse.php @@ -11,7 +11,7 @@ /** * The XmlResponse class. * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class XmlResponse extends TextResponse { diff --git a/Test/Helper/HerderHelperTest.php b/Test/Helper/HerderHelperTest.php index 1067618..3b18201 100644 --- a/Test/Helper/HerderHelperTest.php +++ b/Test/Helper/HerderHelperTest.php @@ -14,7 +14,7 @@ /** * Test class of HeaderHelper * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class HerderHelperTest extends \PHPUnit_Framework_TestCase { diff --git a/Test/Helper/ResponseHelperTest.php b/Test/Helper/ResponseHelperTest.php index e263676..e64dceb 100644 --- a/Test/Helper/ResponseHelperTest.php +++ b/Test/Helper/ResponseHelperTest.php @@ -13,7 +13,7 @@ /** * Test class of ResponseHelper * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class ResponseHelperTest extends \PHPUnit_Framework_TestCase { diff --git a/Test/Helper/ServerHelperTest.php b/Test/Helper/ServerHelperTest.php index 8ae3af4..7027317 100644 --- a/Test/Helper/ServerHelperTest.php +++ b/Test/Helper/ServerHelperTest.php @@ -14,7 +14,7 @@ /** * Test class of ServerHelper * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class ServerHelperTest extends \PHPUnit_Framework_TestCase { diff --git a/Test/Helper/StreamHelperTest.php b/Test/Helper/StreamHelperTest.php index 5592261..7d4c560 100644 --- a/Test/Helper/StreamHelperTest.php +++ b/Test/Helper/StreamHelperTest.php @@ -16,7 +16,7 @@ /** * Test class of StreamHelper * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class StreamHelperTest extends \PHPUnit_Framework_TestCase { diff --git a/Test/HttpServerTest.php b/Test/HttpServerTest.php index 9b8f932..c4a2d97 100644 --- a/Test/HttpServerTest.php +++ b/Test/HttpServerTest.php @@ -18,7 +18,7 @@ /** * Test class of Server * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class HttpServerTest extends \PHPUnit_Framework_TestCase { diff --git a/Test/Mock/MockOutput.php b/Test/Mock/MockOutput.php index af8fd23..3f653d8 100644 --- a/Test/Mock/MockOutput.php +++ b/Test/Mock/MockOutput.php @@ -13,7 +13,7 @@ /** * The MockOutput class. * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class MockOutput extends StubStreamOutput { diff --git a/Test/Output/HttpCompressorTest.php b/Test/Output/HttpCompressorTest.php index 39e5ee6..3dabfda 100644 --- a/Test/Output/HttpCompressorTest.php +++ b/Test/Output/HttpCompressorTest.php @@ -15,7 +15,7 @@ /** * Test class of HttpCompressor * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class HttpCompressorTest extends \PHPUnit_Framework_TestCase { diff --git a/Test/Output/OutputTest.php b/Test/Output/OutputTest.php index ad3bb1e..8d1eafc 100644 --- a/Test/Output/OutputTest.php +++ b/Test/Output/OutputTest.php @@ -14,7 +14,7 @@ /** * Test class of Output * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class OutputTest extends \PHPUnit_Framework_TestCase { diff --git a/Test/Output/StreamOutputTest.php b/Test/Output/StreamOutputTest.php index ee7e097..992f6a7 100644 --- a/Test/Output/StreamOutputTest.php +++ b/Test/Output/StreamOutputTest.php @@ -14,7 +14,7 @@ /** * Test class of StreamOutput * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class StreamOutputTest extends \PHPUnit_Framework_TestCase { diff --git a/Test/Request/ServerRequestFactoryTest.php b/Test/Request/ServerRequestFactoryTest.php index 3c315b6..881b0a0 100644 --- a/Test/Request/ServerRequestFactoryTest.php +++ b/Test/Request/ServerRequestFactoryTest.php @@ -16,7 +16,7 @@ /** * Test class of ServerRequestFactory * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class ServerRequestFactoryTest extends \PHPUnit_Framework_TestCase { diff --git a/Test/Response/AbstractContentTypeResponseTest.php b/Test/Response/AbstractContentTypeResponseTest.php index 8dc673e..2a5b42e 100644 --- a/Test/Response/AbstractContentTypeResponseTest.php +++ b/Test/Response/AbstractContentTypeResponseTest.php @@ -14,7 +14,7 @@ /** * Test class of AbstractContentTypeResponse * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class AbstractContentTypeResponseTest extends \PHPUnit_Framework_TestCase { diff --git a/Test/Response/ContentTypeResponseTest.php b/Test/Response/ContentTypeResponseTest.php index 225e486..c7da897 100644 --- a/Test/Response/ContentTypeResponseTest.php +++ b/Test/Response/ContentTypeResponseTest.php @@ -18,7 +18,7 @@ /** * Test class of EmptyResponse * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class ContentTypeResponseTest extends AbstractBaseTestCase { diff --git a/Test/Stub/StubContentTypeResponse.php b/Test/Stub/StubContentTypeResponse.php index 9083c85..f873937 100644 --- a/Test/Stub/StubContentTypeResponse.php +++ b/Test/Stub/StubContentTypeResponse.php @@ -15,7 +15,7 @@ /** * The StubContentTypeResponse class. * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class StubContentTypeResponse extends AbstractContentTypeResponse { diff --git a/Test/Stub/StubHttpCompressor.php b/Test/Stub/StubHttpCompressor.php index 2de1f12..c50e8e9 100644 --- a/Test/Stub/StubHttpCompressor.php +++ b/Test/Stub/StubHttpCompressor.php @@ -13,7 +13,7 @@ /** * The StubHttpCompressor class. * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class StubHttpCompressor extends HttpCompressor { diff --git a/Test/Stub/StubOutput.php b/Test/Stub/StubOutput.php index 93c7410..8c2c6dd 100644 --- a/Test/Stub/StubOutput.php +++ b/Test/Stub/StubOutput.php @@ -14,7 +14,7 @@ /** * The MockOutput class. * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class StubOutput extends Output { diff --git a/Test/Stub/StubStreamOutput.php b/Test/Stub/StubStreamOutput.php index 472d705..23f6a5a 100644 --- a/Test/Stub/StubStreamOutput.php +++ b/Test/Stub/StubStreamOutput.php @@ -15,7 +15,7 @@ /** * The StubStreamOutput class. * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class StubStreamOutput extends StreamOutput { diff --git a/Test/WebHttpServerTest.php b/Test/WebHttpServerTest.php index 13d8800..2cdbdcb 100644 --- a/Test/WebHttpServerTest.php +++ b/Test/WebHttpServerTest.php @@ -21,7 +21,7 @@ /** * Test class of WebHttpServer * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class WebHttpServerTest extends \PHPUnit_Framework_TestCase { diff --git a/WebHttpServer.php b/WebHttpServer.php index e469cd7..a4796c5 100644 --- a/WebHttpServer.php +++ b/WebHttpServer.php @@ -23,7 +23,7 @@ * @property-read UriData uri * @property-read HttpCompressor compressor * - * @since {DEPLOY_VERSION} + * @since 3.0 */ class WebHttpServer extends HttpServer {