We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As I said in #1295, I have json type field $value. It marked as mixed type in annotation.
json
$value
mixed
class MegaClass { /** * @var mixed */ private $value; }
With 3.12.1 executing of cache:warmup throws Can't use incorrect type mixed for collection in MegaClass:value
cache:warmup
Can't use incorrect type mixed for collection in MegaClass:value
If I change the annotation to union type it will throws another exception Can't use union type array|int|bool|null for collection in MegaClass:value
Can't use union type array|int|bool|null for collection in MegaClass:value
class MegaClass { /** * @var array|int|bool|null */ private $value; }
I believe @dgafka can fix it
The text was updated successfully, but these errors were encountered:
done in #1330
Sorry, something went wrong.
Hi @goetas, is there any date planned for the bug fix release?
No branches or pull requests
As I said in #1295, I have
json
type field$value
. It marked asmixed
type in annotation.With 3.12.1 executing of
cache:warmup
throwsCan't use incorrect type mixed for collection in MegaClass:value
If I change the annotation to union type it will throws another exception
Can't use union type array|int|bool|null for collection in MegaClass:value
I believe @dgafka can fix it
The text was updated successfully, but these errors were encountered: