5
votes

When running artisan migrate on a Laravel 5 project, it is failing with the following FatalErrorException:

$ artisan migrate -vvv --force

[Symfony\Component\Debug\Exception\FatalErrorException] syntax error, unexpected '$table' (T_VARIABLE)

How do I get the file and line that is causing the error?

If in anyway relevant, I'm on a Windows 7 x64 machine with WAMP - PHP 5.6 and Laravel Framework version 5.1.10 (LTS).

2
Having the same problem. I have triple checked my migration files. They run on local machine but error on remote :(Sisir
@Sisir try running php lint recursively to have it check for any syntax errors, you could use gist.github.com/mathiasverraes/3096500 (if on windows, you can run it with mingw.org or git-bash)S P
find . -type f -name '*.php' -exec php -l {} \; |grep -v "No syntax errors detected" is a one-liner you could use for the same - credit: gist.github.com/k3n/1846220#gistcomment-2148283S P

2 Answers

13
votes

There might be a semicolon or bracket missing a line

Check all in your migration files.

Laravel is configured to create daily log files for your application which are stored in the storage/logs directory.

http://laravel.com/docs/5.1/errors#logging

0
votes

This class Symfony\Component\Debug\Exception\FatalErrorException has some differences compared with the other Exception classes and it is not properly presented by the "error renderers" or "error notifiers".

A New sentry "error notifier" ("getsentry/sentry-php" version >= "2.0") will give you a proper stack trace.