Release 2.60 (#5971)
This commit is contained in:
@@ -238,10 +238,10 @@ final class InvoiceCreateCommand extends Command
|
||||
$projects[] = $tmp;
|
||||
}
|
||||
$invoices = $this->createInvoicesForProjects($projects, $defaultQuery, $input, $output);
|
||||
} elseif ($byActiveCustomer) {
|
||||
} elseif ($byActiveCustomer) { // @phpstan-ignore elseif.alwaysFalse
|
||||
$customers = $this->getActiveCustomers($defaultQuery);
|
||||
$invoices = $this->createInvoicesForCustomer($customers, $defaultQuery, $input, $output);
|
||||
} elseif ($byActiveProject) {
|
||||
} elseif ($byActiveProject) { // @phpstan-ignore elseif.alwaysTrue
|
||||
$projects = $this->getActiveProjects($defaultQuery);
|
||||
$invoices = $this->createInvoicesForProjects($projects, $defaultQuery, $input, $output);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user