highlight icon indicating copy to clipboard operation
highlight copied to clipboard

Comments in constructor argument list

Open brendt opened this issue 1 year ago • 0 comments

    public function __construct(
        // Allow a union on a special "missing relation" type:
        public Relation|Author $author,

        // Making the relation nullable would be an option as well:
        /** @var Chapter[] $chapters */
        public ?array $chapters,
    ) {}

brendt avatar Jul 29 '24 05:07 brendt