| 1 | <?php |
||
| 13 | class DefaultBodyParserFactory implements BodyParserFactory { |
||
| 14 | |||
| 15 | protected $registeredBodyParserFactory; |
||
| 16 | |||
| 17 | 6 | public function __construct() { |
|
| 23 | |||
| 24 | 1 | public function add($contentType, BodyParser $bodyParser) { |
|
| 27 | |||
| 28 | /** |
||
| 29 | * Parses API request data out of a url |
||
| 30 | * @param string $contentType |
||
| 31 | * @return BodyParser |
||
| 32 | */ |
||
| 33 | 4 | public function create(string $contentType): BodyParser { |
|
| 36 | } |
||
| 37 |