- changed status to resolved
EvenUtil class is final and abstract together
Issue #44
resolved
Test script
<?php
$r = new ReflectionClass(EventUtil::class);
var_dump($r->isAbstract());
var_dump($r->isFinal());
Result
bool(true)
bool(true)
Comments (1)
-
repo owner - Log in to comment
Fixed
#44: EventUtil class was final abstract→ <<cset 05ce10baf006>>