php - Unexpected '{', expecting T_STRING or T_VARIABLE or '$' -
i have laravel 4 web app using third party package. worked fine on localhost i've uploaded appfog , it's throwing following error in thirdparty plugin:
syntax error, unexpected '{', expecting t_string or t_variable or '$'
somewhere on line:
mail::{$mailmethod}(config::get('saasframe::email.view'), (array)$subscription, function($message) use ($user)
you can view full error details here:
mail::{$mailmethod}
perhaps this?
are calling static variable? if so, try
mail::$mailmethod
Comments
Post a Comment