Hello,
With PHP 7.x, a deprecated constructor notice is emitted if a class has a method with the same name, case insensitive, which the extension catches correctly.
However, the extension also gives the warning for a trait, where this doesn't apply.
<?php
trait Foo
{
public function foo() {} // Emits 'Foo' has a deprecated constructor. [PHP6407]
}
Thanks