Skip to content

Commit cc213f5

Browse files
committed
fixup! fixup! move temp data to temp
1 parent 008b932 commit cc213f5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/run_on_project.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ jobs:
2929
- run: composer install --working-dir framework --ansi
3030

3131
# on whole project, to be able to load vendor/autoload.php
32-
- run: vendor/bin/argtyper add-types framework
32+
- run: vendor/bin/argtyper add-types framework --ansi

src/Command/AddTypesCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
4747

4848
$this->symfonyStyle->writeln(sprintf('<fg=green>Code dirs found in the "%s" project</>', $projectPath));
4949
$this->symfonyStyle->listing($project->getCodeDirectories());
50-
$this->symfonyStyle->newLine();
50+
$this->symfonyStyle->newLine(2);
5151

5252
// 1. Run PHPStan data collection
5353
$this->runPhpStan($project, $isDebug);

src/ValueObject/Project.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Rector\ArgTyper\Helpers\ProjectDirectoryFinder;
88
use Webmozart\Assert\Assert;
99

10-
final class Project
10+
final readonly class Project
1111
{
1212
public function __construct(
1313
private string $directory

0 commit comments

Comments
 (0)