marcioAlmada / annotations

The KISS PHP annotations library.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support for multiline values

marcioAlmada opened this issue · comments

Code says it all:

class Foo
{
    /**
     * @json_value json [
     *     "x", "y"
     * ]
     * @json_value json {
     *    "x": {
     *        "y": "z"
     *    }
     * }
     */
    private $strong_typed_fixture;
}