Skip to content

Commit

Permalink
add vendor and composer lock to gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Moemen-Gaballah committed Jul 25, 2024
1 parent f48d9bc commit c4deb3f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
vendor
composer.lock
.phpunit.cache
4 changes: 2 additions & 2 deletions src/Console/ExecuteStatusCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ public function handle(ExecutorService $service)
$executor['name'],
ucfirst($executor['type']->name),
$executor['tag'],
$executor['model']?->batch,
$executor['model']?->executed > 0 ? '<info>Yes</info>' : '<comment>No</comment>',
$executor['model']->batch,
$executor['model']->executed > 0 ? '<info>Yes</info>' : '<comment>No</comment>',
];
})
);
Expand Down

0 comments on commit c4deb3f

Please sign in to comment.