Artisan::call('migrate') not working after upgrading Laravel to 4.2
Yes, there is a problem actually with the last version,all previous sources are not working, should use :
Artisan::call('migrate', array('--force' => true));
Tested and working fine.
Use of undefined constant STDIN
seems to be a Symfony error, see github.com/symfony/symfony/issues/10795.
A composer update
should fix your problem.