I was installing the script and getting the following error in the code,
Fatal error: Can't use method return value in write context in /home4/michael/hashmagic.co/app/src/App/App.php on line 263
the line 263 of code is shown below,
public function _creditCardEnabled(){
if(is_null($this->_getPrivateStripeKey()) || empty($this->_getPrivateStripeKey())) return false;
return intval($this->_getSettingsAttribute('creditcard_enabled')) == 1;
}
kindly tell me what to write instead of the code I shown.