You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
publicstaticfunctionexecute($values = 'Special default value that allows Sailor to differentiate between explicitly passing null and not passing a value at all.'): TakeList\TakeListResult
16
+
{
17
+
returnself::executeOperation(
18
+
$values,
19
+
);
20
+
}
21
+
22
+
protectedstaticfunctionconverters(): array
23
+
{
24
+
static$converters;
25
+
26
+
return$converters ??= [
27
+
['values', new \Spawnia\Sailor\Convert\NullConverter(new \Spawnia\Sailor\Convert\ListConverter(new \Spawnia\Sailor\Convert\NullConverter(new \Spawnia\Sailor\Convert\IntConverter)))],
publicstaticfunctionmake($takeList = 'Special default value that allows Sailor to differentiate between explicitly passing null and not passing a value at all.'): self
17
+
{
18
+
$instance = newself;
19
+
20
+
$instance->__typename = 'Mutation';
21
+
if ($takeList !== self::UNDEFINED) {
22
+
$instance->takeList = $takeList;
23
+
}
24
+
25
+
return$instance;
26
+
}
27
+
28
+
protectedfunctionconverters(): array
29
+
{
30
+
static$converters;
31
+
32
+
return$converters ??= [
33
+
'__typename' => new \Spawnia\Sailor\Convert\NonNullConverter(new \Spawnia\Sailor\Convert\StringConverter),
34
+
'takeList' => new \Spawnia\Sailor\Convert\NullConverter(new \Spawnia\Sailor\Convert\ListConverter(new \Spawnia\Sailor\Convert\NullConverter(new \Spawnia\Sailor\Convert\IntConverter))),
0 commit comments