1Static return type 2----- 3<?php 4class Test { 5 public static function create(): static {} 6} 7----- 8array( 9 0: Stmt_Class( 10 attrGroups: array( 11 ) 12 flags: 0 13 name: Identifier( 14 name: Test 15 ) 16 extends: null 17 implements: array( 18 ) 19 stmts: array( 20 0: Stmt_ClassMethod( 21 attrGroups: array( 22 ) 23 flags: PUBLIC | STATIC (9) 24 byRef: false 25 name: Identifier( 26 name: create 27 ) 28 params: array( 29 ) 30 returnType: Name( 31 name: static 32 ) 33 stmts: array( 34 ) 35 ) 36 ) 37 ) 38) 39