1<?php
2/**
3 * com struct
4 */
5class structure {
6    // Attributes
7    /** @var type1 com1 */
8    public $nom1;
9    /** @var type2 com2-1
10     *       com2-2 */
11    private $nom2;
12    protected $nom3;
13    // Operations
14    public function operation ($attr1) {
15    }
16}
17?>
18