Skip to content

Commit 8e53961

Browse files
committed
Merge remote-tracking branch 'origin/feature/content-search' into feature/content-search
2 parents 7a73d66 + 16f065e commit 8e53961

File tree

7 files changed

+1
-13
lines changed

7 files changed

+1
-13
lines changed

src/Cli/ContextGenerator.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ public function __construct(
4242
parent::__construct();
4343
}
4444

45-
/**
46-
* @return int
47-
*/
4845
protected function execute(InputInterface $input, OutputInterface $output): int
4946
{
5047
$files = new Files();

src/Cli/GetVersion.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ public function __construct(private readonly string $version)
1717
parent::__construct();
1818
}
1919

20-
/**
21-
* @return int
22-
*/
2320
protected function execute(InputInterface $input, OutputInterface $output): int
2421
{
2522
$output->writeln('Current version: ' . $this->version);

src/Fetcher/FileSourceFetcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,4 @@ protected function getContent(SplFileInfo $file, SourceInterface $source): strin
9696

9797
return $content;
9898
}
99-
}
99+
}

src/Fetcher/Finder/SymfonyFinder.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
use Butschster\ContextGenerator\Fetcher\FinderInterface;
1010
use Butschster\ContextGenerator\Source\FileSource;
1111
use Symfony\Component\Finder\Finder;
12-
use Symfony\Component\Finder\SplFileInfo;
1312

1413
/**
1514
* Implementation of FinderInterface using Symfony's Finder component

src/Fetcher/TextSourceFetcher.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ public function supports(SourceInterface $source): bool
1818
return $source instanceof TextSource;
1919
}
2020

21-
/**
22-
* @return string
23-
*/
2421
public function fetch(SourceInterface $source): string
2522
{
2623
if (!$source instanceof TextSource) {

src/Loader/JsonConfigParser.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ public function parse(array $config): DocumentRegistry
5353
/**
5454
* Create a Source object from its configuration.
5555
*
56-
* @return FileSource|GithubSource|TextSource|UrlSource
5756
*/
5857
private function createSource(array $sourceData, string $path): FileSource|UrlSource|TextSource|GithubSource
5958
{

src/Modifier/PhpSignature.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ final class PhpSignature implements SourceModifierInterface
2222
];
2323

2424
/**
25-
* @return string
2625
*
2726
* @psalm-return 'php-signature'
2827
*/

0 commit comments

Comments
 (0)