So, there is a parsing error on this line:
$artisan = Illuminate\Console\Application::start($app);
The PHP parser did not expect there \ which is used for namespaces that were introduced in PHP 5.3, which means restart the old version of PHP. You must upgrade your PHP installation to a minimum of PHP 5.3.
My hosting company has PHP 5.2 and 5.3 installed, so I just run:
/usr/local/php53/bin/php artisan migrate
source share