I think the following has worked since PHP 5.6, using constant arrays instead of static:
public const ARRAY_1 = ['a', 'b', 'c']; public const ARRAY_2 = ['d', 'e', 'f']; public const ARRAY_3 = [ ...self::ARRAY_1, ...self::ARRAY_2 ];