File tree 7 files changed +3
-35
lines changed
7 files changed +3
-35
lines changed Original file line number Diff line number Diff line change 9
9
"issues" : " https://github.com/php-type-language/phpdoc/issues"
10
10
},
11
11
"require" : {
12
- "php" : " ^8.1" ,
13
- "ext-json" : " *"
12
+ "php" : " ^8.1"
14
13
},
15
14
"autoload" : {
16
15
"psr-4" : {
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ final class DocBlock implements
21
21
OptionalDescriptionProviderInterface,
22
22
TagsProviderInterface,
23
23
\IteratorAggregate,
24
- \JsonSerializable,
25
24
\ArrayAccess,
26
25
\Countable
27
26
{
@@ -95,14 +94,6 @@ public function getIterator(): \Traversable
95
94
return new \ArrayIterator ($ this ->tags );
96
95
}
97
96
98
- public function jsonSerialize (): array
99
- {
100
- return [
101
- 'description ' => $ this ->description ,
102
- 'tags ' => $ this ->tags ,
103
- ];
104
- }
105
-
106
97
/**
107
98
* @return int<0, max>
108
99
*/
Original file line number Diff line number Diff line change @@ -37,11 +37,6 @@ public static function fromStringableOrNull(string|\Stringable|null $description
37
37
return self ::fromStringable ($ description );
38
38
}
39
39
40
- public function jsonSerialize (): string
41
- {
42
- return $ this ->value ;
43
- }
44
-
45
40
public function __toString (): string
46
41
{
47
42
return $ this ->value ;
Original file line number Diff line number Diff line change 8
8
* Any class that implements this interface is a description object
9
9
* that can be represented as a raw string scalar value.
10
10
*/
11
- interface DescriptionInterface extends \JsonSerializable, \ Stringable
11
+ interface DescriptionInterface extends \Stringable
12
12
{
13
13
/**
14
14
* Returns a plain string representation of this description.
Original file line number Diff line number Diff line change @@ -88,11 +88,6 @@ public function offsetUnset(mixed $offset): void
88
88
throw new \BadMethodCallException (static ::class . ' objects are immutable ' );
89
89
}
90
90
91
- public function jsonSerialize (): array
92
- {
93
- return $ this ->components ;
94
- }
95
-
96
91
public function __toString (): string
97
92
{
98
93
return \implode ('' , $ this ->components );
Original file line number Diff line number Diff line change @@ -31,15 +31,6 @@ public function getDescription(): ?DescriptionInterface
31
31
return $ this ->description ;
32
32
}
33
33
34
- public function jsonSerialize (): array
35
- {
36
- return \array_filter ([
37
- 'kind ' => static ::class,
38
- 'name ' => $ this ->name ,
39
- 'description ' => $ this ->description ,
40
- ], static fn (mixed $ value ): bool => $ value !== null );
41
- }
42
-
43
34
public function __toString (): string
44
35
{
45
36
if ($ this ->description === null ) {
Original file line number Diff line number Diff line change 6
6
7
7
use TypeLang \PHPDoc \Tag \Description \OptionalDescriptionProviderInterface ;
8
8
9
- interface TagInterface extends
10
- OptionalDescriptionProviderInterface,
11
- \JsonSerializable,
12
- \Stringable
9
+ interface TagInterface extends OptionalDescriptionProviderInterface, \Stringable
13
10
{
14
11
/**
15
12
* Returns the non-empty tag name string without the '@' prefix.
You can’t perform that action at this time.
0 commit comments