PHP 8 Error "Undefined property"

Yeah, you need to add property in block controller

public $fileOrder;

An it will look something like that:

class Controller extends BlockController
{
    public $fileOrder;
    // rest of methods
}
2 Likes