EvenUtil class is final and abstract together

Issue #44 resolved
Former user created an issue

Test script

<?php

$r = new ReflectionClass(EventUtil::class);
var_dump($r->isAbstract());
var_dump($r->isFinal());

Result

bool(true)
bool(true)

Comments (1)

  1. Log in to comment