1Comment at end of class (#509) 2----- 3<?php 4class MyClass { 5 protected $a; 6 // my comment 7} 8----- 9array( 10 0: Stmt_Class( 11 attrGroups: array( 12 ) 13 flags: 0 14 name: Identifier( 15 name: MyClass 16 ) 17 extends: null 18 implements: array( 19 ) 20 stmts: array( 21 0: Stmt_Property( 22 attrGroups: array( 23 ) 24 flags: PROTECTED (2) 25 type: null 26 props: array( 27 0: PropertyItem( 28 name: VarLikeIdentifier( 29 name: a 30 ) 31 default: null 32 ) 33 ) 34 hooks: array( 35 ) 36 ) 37 1: Stmt_Nop( 38 comments: array( 39 0: // my comment 40 ) 41 ) 42 ) 43 ) 44) 45