File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 6
6
use Exception ;
7
7
use Illuminate \Routing \Route ;
8
8
use ReflectionFunction ;
9
+ use Spatie \LaravelData \Attributes \DataCollectionOf ;
9
10
use Spatie \LaravelData \Data ;
10
11
use Spatie \LaravelData \DataCollection ;
11
12
use Spatie \LaravelData \Support \Wrapping \WrapExecutionType ;
12
13
13
14
class Operation extends Data
14
15
{
15
16
public function __construct (
16
- /** @var DataCollection<int,Parameter> */
17
+ /** @var null|DataCollection<int,Parameter> */
18
+ #[DataCollectionOf(Parameter::class)]
17
19
public ?DataCollection $ parameters ,
18
20
public ?RequestBody $ requestBody ,
19
21
public DefaultResponse $ responses ,
20
22
/** @var null|DataCollection<int,SecurityScheme> */
23
+ #[DataCollectionOf(SecurityScheme::class)]
21
24
public ?DataCollection $ security ,
22
25
) {
23
26
}
Original file line number Diff line number Diff line change 13
13
use ReflectionNamedType ;
14
14
use ReflectionParameter ;
15
15
use ReflectionProperty ;
16
+ use Spatie \LaravelData \Attributes \DataCollectionOf ;
16
17
use Spatie \LaravelData \Data ;
17
18
use Spatie \LaravelData \Data as LaravelData ;
18
19
use Spatie \LaravelData \DataCollection ;
@@ -35,6 +36,7 @@ public function __construct(
35
36
public ?Schema $ items = null ,
36
37
public ?string $ ref = null ,
37
38
/** @var DataCollection<int,Property> */
39
+ #[DataCollectionOf(Property::class)]
38
40
protected ?DataCollection $ properties = null ,
39
41
) {
40
42
$ this ->type = self ::CASTS [$ this ->type ] ?? $ this ->type ;
You can’t perform that action at this time.
0 commit comments