File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/Symfony/Component/WebLink Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ class Link implements EvolvableLinkInterface
46
46
private $ rel = [];
47
47
48
48
/**
49
- * @var array<string, string| \Stringable| int| float| bool| array>
49
+ * @var array<string, string | \Stringable | int | float | bool | array>
50
50
*/
51
51
private $ attributes = [];
52
52
@@ -95,7 +95,7 @@ public function getAttributes(): array
95
95
*
96
96
* @return static
97
97
*/
98
- public function withHref (string | \Stringable $ href )
98
+ public function withHref (string | \Stringable $ href )
99
99
{
100
100
$ that = clone $ this ;
101
101
$ that ->href = $ href ;
@@ -134,7 +134,7 @@ public function withoutRel(string $rel)
134
134
*
135
135
* @return static
136
136
*/
137
- public function withAttribute (string $ attribute , string | \Stringable | int | float | bool | array $ value )
137
+ public function withAttribute (string $ attribute , string | \Stringable | int | float | bool | array $ value )
138
138
{
139
139
$ that = clone $ this ;
140
140
$ that ->attributes [$ attribute ] = $ value ;
You can’t perform that action at this time.
0 commit comments