-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ArrayType
as a generic wrapper for a "list of custom types"
#6883
base: 4.3.x
Are you sure you want to change the base?
Conversation
@@ -449,7 +450,7 @@ public function getParameterTypes(): array | |||
* | |||
* @param int|string $key The key of the bound parameter type | |||
*/ | |||
public function getParameterType(int|string $key): string|ParameterType|Type|ArrayParameterType | |||
public function getParameterType(int|string $key): string|ParameterType|Type|ArrayParameterType|ArrayType |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
BC break?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My idea was that ArrayType
is a Type
. It with throw a "not implemented" exception for the SQL declaration (because we can't use it as a column type) but should be able to implement the rest of the methods.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What would it do to convert a PHP value (an array, probably?) to a database value?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It will delegate the conversion of each element of the array to its element type. We can start simple and accept only Type
in the constructor to prove the idea:
public function __construct(private readonly Type $elementType)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When would it be necessary to use the ArrayType
in this way?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When building the query here. If this code builds the parameter types as [new ArrayType('rot13'), 'rot13']
, the DBAL should be able to apply rot13
to the array elements similar to how it does with a single value.
Summary
The list of parameters conversion is currently limited to a few types expressed by the
ArrayParameterType
enum.In doctrine/orm#11897, it might be necessary to express "list of parameters of a given custom type".
As suggested in doctrine/orm#11897 (comment), this PR is an initial exploration of using a new
ArrayType
to be wrapped around any other underlying type.