Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
lam0819 authored and github-actions[bot] committed Jan 14, 2025
1 parent f8875e2 commit fb7fe33
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Resources/ScaffoldResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -461,9 +461,9 @@ public static function generateFiles(array $data)
foreach ($commands as $command) {
$fullCommand = "php artisan $command";
$descriptorspec = [
0 => ['pipe', 'r'], //stdin
1 => ['pipe', 'w'], //stdout
2 => ['pipe', 'w'], //stderr
0 => ['pipe', 'r'], // stdin
1 => ['pipe', 'w'], // stdout
2 => ['pipe', 'w'], // stderr
];

$process = proc_open($fullCommand, $descriptorspec, $pipes, base_path());
Expand Down

0 comments on commit fb7fe33

Please sign in to comment.