Skip to content
Merged

V2 #77

Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
aa8e3cc
WIP
f3ath Jan 4, 2018
84b7150
Removed doc2test
f3ath Feb 21, 2018
b94bd84
Tests pass
f3ath Feb 22, 2018
2c6ca98
Tests pass
f3ath Feb 22, 2018
6ea0926
Tests pass
f3ath Feb 22, 2018
00a1b65
Tests pass
f3ath Feb 22, 2018
9371d46
Update README.md
f3ath Feb 22, 2018
89bfcff
Tests pass
f3ath Feb 22, 2018
a75ded2
Tests pass
f3ath Feb 22, 2018
b0d3f2d
Tests pass
f3ath Feb 22, 2018
f53b1e0
Merge branch 'v2' of github.com:json-api-php/json-api into v2
f3ath Feb 22, 2018
77e0ab0
Tests pass
f3ath Feb 23, 2018
c04be95
Tests pass
f3ath Feb 23, 2018
be76f3f
Tests pass
f3ath Feb 23, 2018
b0dd136
Tests pass
f3ath Feb 23, 2018
20c53db
Tests pass
f3ath Feb 23, 2018
0452ea7
Tests pass
f3ath Feb 23, 2018
27927a4
Tests pass
f3ath Feb 23, 2018
797e74a
Tests pass
f3ath Feb 23, 2018
1bd2be0
Tests pass
f3ath Feb 23, 2018
d6ef007
Tests pass
f3ath Feb 23, 2018
9c02547
Tests pass
f3ath Feb 24, 2018
46a1f6b
Tests pass
f3ath Feb 24, 2018
74c337b
Tests pass
f3ath Feb 25, 2018
29b792d
Tests pass
f3ath Feb 26, 2018
9939f88
Tests pass
f3ath Feb 26, 2018
7aa20cd
Tests pass
f3ath Feb 26, 2018
0c0081a
Merge branch 'master' into v2
f3ath Feb 26, 2018
473df51
Tests pass
f3ath Feb 26, 2018
8fd9fd0
Naming
f3ath Feb 26, 2018
7caba5f
Naming
f3ath Feb 26, 2018
ebdd747
Tests pass
f3ath Feb 26, 2018
d4dc739
Tests pass
f3ath Feb 26, 2018
9619f1b
Tests pass
f3ath Feb 26, 2018
77357dd
Tests pass
f3ath Feb 27, 2018
438d99a
Tests pass
f3ath Feb 27, 2018
1b0346e
Tests pass
f3ath Feb 27, 2018
0cfbe49
v2 rc.0
f3ath Feb 27, 2018
cc488d8
v2 rc.0
f3ath Feb 27, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Naming
  • Loading branch information
f3ath committed Feb 26, 2018
commit 7caba5f24e7b0936aa7f061080b75b31c80e4ac6
2 changes: 1 addition & 1 deletion src/Error.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

use JsonApiPhp\JsonApi\Error\ErrorMember;

final class Error extends JsonSerializableValue implements MandatoryErrorDocumentMember
final class Error extends JsonSerializableValue implements ErrorDocumentMember
{
public function __construct(ErrorMember ...$members)
{
Expand Down
2 changes: 1 addition & 1 deletion src/ErrorDocument.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

final class ErrorDocument extends JsonSerializableValue
{
public function __construct(MandatoryErrorDocumentMember $error, ErrorDocumentMember ...$members)
public function __construct(Error $error, ErrorDocumentMember ...$members)
{
parent::__construct(combine($error, ...$members));
}
Expand Down
11 changes: 0 additions & 11 deletions src/MandatoryErrorDocumentMember.php

This file was deleted.