I believe you have to call the constructor function of your parent controller if I understand your situation correctly
class FrontController extends Controller {
protected $cdata;
public function __construct()
{
$this->cdata = 'Something';
}
}
class ChildController extends FrontController {
public function __construct()
{
parent::__construct();
dd($this->cdata);
}
}