Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ abstract class Bar implements Type
mixed $value,
mixed $currentUser,
ValueObject $object,
array $targets = null
?array $targets = null
): ?bool {
return null;
}
Expand All @@ -28,7 +28,7 @@ abstract class Bar implements Type
mixed $value,
mixed $currentUser,
object $object,
array $targets = null
?array $targets = null
): ?bool {
return null;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Foo implements Type
mixed $value,
mixed $currentUser,
ValueObject $differentName,
array $targets = null
?array $targets = null
): ?bool {
return null;
}
Expand All @@ -28,7 +28,7 @@ class Foo implements Type
mixed $value,
mixed $currentUser,
object $differentName,
array $targets = null
?array $targets = null
): ?bool {
return null;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface SubType extends Type
mixed $value,
mixed $currentUser,
ValueObject $object,
array $targets = null,
?array $targets = null,
bool $foo = false
): ?bool;
}
Expand All @@ -27,7 +27,7 @@ interface SubType extends Type
mixed $value,
mixed $currentUser,
object $object,
array $targets = null,
?array $targets = null,
bool $foo = false
): ?bool;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Foo extends AbstractType
mixed $value,
mixed $currentUser,
ValueObject $differentName,
array $targets = null
?array $targets = null
): ?bool {
return null;
}
Expand All @@ -28,7 +28,7 @@ class Foo extends AbstractType
mixed $value,
mixed $currentUser,
object $differentName,
array $targets = null
?array $targets = null
): ?bool {
return null;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class ShouldNotBeChanged {
mixed $value,
mixed $currentUser,
ValueObject $object,
array $targets = null
?array $targets = null
): ?bool {}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class WithParamThatShouldNotBeChanged implements Type {
mixed $value,
mixed $currentUser,
object $object,
array $targets = null
?array $targets = null
): ?bool {}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ final class FooBar extends BasicType
mixed $value,
mixed $currentUser,
ValueObject $object,
array $targets = null
?array $targets = null
): ?bool {
return null;
}
Expand All @@ -28,7 +28,7 @@ final class FooBar extends BasicType
mixed $value,
mixed $currentUser,
object $object,
array $targets = null
?array $targets = null
): ?bool {
return null;
}
Expand Down
Loading