The use of $this as a reassignable variable is no longer permitted under PHP 7.0 & explicitly is forbidden in PHP 7.1. This is exposed when you upgrade CodeIgniter to latest edition inside GoCart.
This affects line 24 & 47 of application/core/AdminController.php where it specifies:
$vars['this'] = $this;
What do you think is an acceptable solution?