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:

chris-till-staging-app.eu01.aws.af.cm

mail::{$mailmethod} 

perhaps this?

are calling static variable? if so, try

mail::$mailmethod 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -