File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ declare (strict_types=1 );
4
+
5
+ namespace WebServCo \JSONAPI \Contract \Service ;
6
+
7
+ use WebServCo \Form \Contract \FormInterface ;
8
+
9
+ interface JSONAPIHandlerInterface extends FormInterface
10
+ {
11
+ }
Original file line number Diff line number Diff line change 9
9
use Psr \Http \Message \ServerRequestInterface ;
10
10
use UnexpectedValueException ;
11
11
use WebServCo \Data \Contract \Extraction \DataExtractionContainerInterface ;
12
- use WebServCo \Form \Contract \FormInterface ;
13
12
use WebServCo \Form \Service \AbstractForm ;
13
+ use WebServCo \JSONAPI \Contract \Service \JSONAPIHandlerInterface ;
14
14
use WebServCo \JSONAPI \Contract \Service \JSONAPIRequestServiceInterface ;
15
15
16
16
use function in_array ;
21
21
*
22
22
* Makes use of form system to take advantage of validation/filtering.
23
23
*/
24
- final class JSONAPIItemHandler extends AbstractForm implements FormInterface
24
+ final class JSONAPIItemHandler extends AbstractForm implements JSONAPIHandlerInterface
25
25
{
26
26
private const VALID_REQUEST_METHODS = [
27
27
RequestMethodInterface::METHOD_DELETE ,
You can’t perform that action at this time.
0 commit comments