-
-
Notifications
You must be signed in to change notification settings - Fork 296
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
AnnotationReader does not read first array into "value" #326
Comments
This was referenced Jul 9, 2014
janschoenherr
added a commit
to janschoenherr/annotations
that referenced
this issue
Jul 9, 2014
Moved to doctrine/annotations#38 |
Done as of doctrine/annotations@0db097b |
Thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Foo({....}, bar="x")
I would expect to get an array with:
['value' => {....}, 'bar' => 'x'],
instead it throws an Exception:
However this seems to work fine:
@Foo("test", bar="x")
The text was updated successfully, but these errors were encountered: