Skip to content

Commit ae64cc3

Browse files
committed
fix cs
1 parent 46e76fe commit ae64cc3

1 file changed

Lines changed: 7 additions & 8 deletions

File tree

src/Keboola/Console/Command/OrganizationsAddFeature.php

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -63,16 +63,15 @@ private function printResult(OutputInterface $output, bool $force, array $succes
6363
{
6464
$failedOrgsString = (count($failedOrgs) > 0) ? \sprintf(' (%s)', implode(', ', $failedOrgs)) : '';
6565
$output->writeln(sprintf(
66-
"Processed %d organizations and %s failed\n"
66+
"Processed %d organizations and %s failed\n"
6767
. "%d projects where disabled\n"
6868
. "%d projects have the feature already\n"
6969
. '%d ' . ($force ? "projects updated" : "projects can be updated in force mode") . "\n",
70-
count($successFullOrgs),
71-
count($failedOrgs) . $failedOrgsString,
72-
$this->projectsDisabled,
73-
$this->projectsWithFeature,
74-
$this->projectsUpdated,
75-
)
76-
);
70+
count($successFullOrgs),
71+
count($failedOrgs) . $failedOrgsString,
72+
$this->projectsDisabled,
73+
$this->projectsWithFeature,
74+
$this->projectsUpdated,
75+
));
7776
}
7877
}

0 commit comments

Comments
 (0)