From 78f39a3e6c38806c7acd5404285d8bfc346956db Mon Sep 17 00:00:00 2001 From: John Kleijn Date: Thu, 4 Feb 2016 20:19:42 +0100 Subject: [PATCH] Add scrutinizer badge --- README.md | 1 + src/Request/Decoder.php | 30 ------------------------------ 2 files changed, 1 insertion(+), 30 deletions(-) delete mode 100644 src/Request/Decoder.php diff --git a/README.md b/README.md index c6a4372..dc9ba30 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # KleijnWeb\SwaggerBundle [![Build Status](https://travis-ci.org/kleijnweb/swagger-bundle.svg?branch=master)](https://travis-ci.org/kleijnweb/swagger-bundle) +[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/kleijnweb/swagger-bundle/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/kleijnweb/swagger-bundle/?branch=master) [![Latest Stable Version](https://poser.pugx.org/kleijnweb/swagger-bundle/v/stable)](https://packagist.org/packages/kleijnweb/swagger-bundle) Invert your workflow (contract first) using Swagger specs and set up a Symfony REST app with minimal config. diff --git a/src/Request/Decoder.php b/src/Request/Decoder.php deleted file mode 100644 index e997b0b..0000000 --- a/src/Request/Decoder.php +++ /dev/null @@ -1,30 +0,0 @@ - - */ -class Decoder -{ - /** - * @var ContentDecoder - */ - private $contentDecoder; - - /** - * @param ContentDecoder $contentDecoder - */ - public function __construct(ContentDecoder $contentDecoder) - { - $this->contentDecoder = $contentDecoder; - } -}