自PHP 7起使用构造时,不支持使用弃用的PHP4样式类构造函数

I have several lines of code in my widgets.php that are showing an error.

This is a sample of the code I found at the given location and error:

function asp_testimonail_rotator_widget() {
    parent::__construct( false, 'ASP: Random Testimonial' );
}

I saw a previous thread that solved the error by adding the "_construct", but my code already has it in there. How do I go about fixing that?

Thanks!