File tree 3 files changed +10
-5
lines changed
3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,11 @@ parameters:
10
10
11
11
ignoreErrors:
12
12
- '#Unsafe usage of new static\(\).#'
13
- - identifier: missingType.generics
14
- - identifier: missingType.iterableValue
13
+ - identifier: missingType.generics
14
+ - identifier: missingType.iterableValue
15
+ - identifier: binaryOp.invalid
16
+ - identifier: return.type
17
+ - identifier: argument.type
15
18
16
19
excludePaths:
17
20
- ./src/Html/Fluent.php
Original file line number Diff line number Diff line change @@ -271,10 +271,12 @@ public function addClass(string $class): static
271
271
{
272
272
if (! isset ($ this ->attributes ['className ' ])) {
273
273
$ this ->attributes ['className ' ] = $ class ;
274
- } else {
275
- $ this -> attributes [ ' className ' ] .= " $ class " ;
274
+
275
+ return $ this ;
276
276
}
277
277
278
+ $ this ->attributes ['className ' ] = $ this ->attributes ['className ' ]." $ class " ;
279
+
278
280
return $ this ;
279
281
}
280
282
Original file line number Diff line number Diff line change @@ -503,7 +503,7 @@ public function parseRender(mixed $value): ?string
503
503
return $ value ($ parameters );
504
504
} elseif ($ this ->isBuiltInRenderFunction ($ value )) {
505
505
return $ value ;
506
- } elseif (strlen (( string ) $ value ) < 256 && $ view ->exists ($ value )) {
506
+ } elseif (is_string ( $ value ) && strlen ( $ value ) < 256 && $ view ->exists ($ value )) {
507
507
return $ view ->make ($ value )->with ($ parameters )->render ();
508
508
}
509
509
You can’t perform that action at this time.
0 commit comments