- Output for 8.4.4
- Fatal error: Property hook cannot be both abstract and final in /in/hSO0C on line 9
Process exited with code 255.
<?php // lint >= 8.4
namespace AbstractFinalHook;
abstract class User
{
abstract public string $foo {
final get;
}
}