<?php
abstract class baseApp
{
abstract public function __construct( array $opts );
}
class foo extends baseApp
{
public function __construct( array $opts )
{
}
}
the example code trigger the inspect "__construct is probably missing baseApp::__construct call", in this case you cant really call parent __construct as it's abstract.
Oops, thank you for reporting @ArabCoders, I'll take care of fixing this.
@kalessil thank you for your fast reply xD