<?php abstract class A { abstract public int $foo { get; } } trait T { public int $foo { get => 42; } } final class B extends A { use T; }
You have javascript disabled. You will not be able to edit any code.