Skip to content

Commit 84d2b5d

Browse files
committed
docblocks
1 parent 86ed088 commit 84d2b5d

File tree

7 files changed

+20
-0
lines changed

7 files changed

+20
-0
lines changed

src/Application/Adapters/Drupal/Preset.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ public static function getName(): string
2020
return 'drupal';
2121
}
2222

23+
/**
24+
* @return array<string, array>
25+
*/
2326
public static function get(Composer $composer): array
2427
{
2528
$config = [

src/Application/Adapters/Laravel/Preset.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ public static function getName(): string
2525
return 'laravel';
2626
}
2727

28+
/**
29+
* @return array<string, array>
30+
*/
2831
public static function get(Composer $composer): array
2932
{
3033
$config = [

src/Application/Adapters/Magento2/Preset.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ public static function getName(): string
4545
return 'magento2';
4646
}
4747

48+
/**
49+
* @return array<string, array>
50+
*/
4851
public static function get(Composer $composer): array
4952
{
5053
return ConfigResolver::mergeConfig(DefaultPreset::get($composer), self::CONFIG);

src/Application/Adapters/Symfony/Preset.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ public static function getName(): string
2020
return 'symfony';
2121
}
2222

23+
/**
24+
* @return array<string, array>
25+
*/
2326
public static function get(Composer $composer): array
2427
{
2528
$config = [

src/Application/Adapters/WordPress/Preset.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ public static function getName(): string
2020
return 'wordpress';
2121
}
2222

23+
/**
24+
* @return array<string, array>
25+
*/
2326
public static function get(Composer $composer): array
2427
{
2528
$config = [

src/Application/Adapters/Yii/Preset.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ public static function getName(): string
3636
return 'yii';
3737
}
3838

39+
/**
40+
* @return array<string, array>
41+
*/
3942
public static function get(Composer $composer): array
4043
{
4144
return ConfigResolver::mergeConfig(DefaultPreset::get($composer), self::CONFIG);

src/Domain/Insights/SyntaxCheck.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ private function getBinary(): string
8686
* This insight uses paths as-is rather than resolving them, As parallel-lint resolves paths itself.
8787
*
8888
* @return array<string>
89+
* @throws \Psr\Container\ContainerExceptionInterface
90+
* @throws \Psr\Container\NotFoundExceptionInterface
8991
*/
9092
private function getShellExcludeArgs(): array
9193
{

0 commit comments

Comments
 (0)