| 1 | <?php |
||
| 13 | class DefaultBodyParserFactory implements BodyParserFactory |
||
| 14 | { |
||
| 15 | |||
| 16 | protected $registeredBodyParserFactory; |
||
| 17 | |||
| 18 | 4 | public function __construct() |
|
| 25 | |||
| 26 | 1 | public function add($contentType, BodyParser $bodyParser) |
|
| 30 | |||
| 31 | /** |
||
| 32 | * Parses API request data out of a url |
||
| 33 | * @param string $contentType |
||
| 34 | * @return BodyParser |
||
| 35 | */ |
||
| 36 | 4 | public function create(string $contentType): BodyParser |
|
| 40 | } |
||
| 41 |