| Total Complexity | 2 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | class JsonParser implements BodyParserInterface |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var StreamInterface |
||
| 26 | */ |
||
| 27 | private $stream; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Creates JsonParser |
||
| 31 | * @param StreamInterface $stream |
||
| 32 | */ |
||
| 33 | public function __construct(StreamInterface $stream) |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Parses the provided |
||
| 40 | * |
||
| 41 | * @return mixed |
||
| 42 | */ |
||
| 43 | public function parse() |
||
| 50 |