1<?php 2class TheClass extends ParentClass { 3 use TraitA; 4 5 public function test() { 6 return self::$non_empty_array; 7 } 8} 9