Created
December 9, 2014 08:45
-
-
Save assertchris/bfb6feedd94bde64344c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Symfony\Component\Console\Output\StreamOutput; | |
$handle = fopen("php://output", "w"); | |
$stream = new StreamOutput($handle); | |
Artisan::call("migrate", ["--path" => "Acme/Migration"], $stream); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment