Skip to content

Release 0.8.3

Latest
Compare
Choose a tag to compare
@ThomasSquall ThomasSquall released this 29 Dec 16:32
· 12 commits to master since this release

This release brings array support on Annotations parameters.

In order to permit this, I had to move from C#-like annotations to Java-like ones.

That means that the following example annotation:

[\MyNamespace\MyAnnotation]

Should now be written:

@mynamespace\MyAnnotation

Arrays are supported with the following format

@mynamespace\MyAnnotation(myArg = [val1, val2])

NOTE: array(val1, val2) is not supported as round brackets will cause a conflict with the argument round brackets