Skip to content

Commit d3186b6

Browse files
committed
remove some unnecessary phpdoc as per php-cs-fixer
1 parent 9f5af12 commit d3186b6

File tree

5 files changed

+0
-14
lines changed

5 files changed

+0
-14
lines changed

src/ClassDiscovery.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,6 @@ public static function clearCache()
179179
/**
180180
* Evaluates conditions to boolean.
181181
*
182-
* @param mixed $condition
183-
*
184182
* @return bool
185183
*/
186184
protected static function evaluateCondition($condition)

src/Strategy/CommonClassesStrategy.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,6 @@ final class CommonClassesStrategy implements DiscoveryStrategy
110110
],
111111
];
112112

113-
/**
114-
* {@inheritdoc}
115-
*/
116113
public static function getCandidates($type)
117114
{
118115
if (Psr18Client::class === $type) {

src/Strategy/CommonPsr17ClassesStrategy.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,6 @@ final class CommonPsr17ClassesStrategy implements DiscoveryStrategy
9090
],
9191
];
9292

93-
/**
94-
* {@inheritdoc}
95-
*/
9693
public static function getCandidates($type)
9794
{
9895
$candidates = [];

src/Strategy/MockClientStrategy.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
*/
1414
final class MockClientStrategy implements DiscoveryStrategy
1515
{
16-
/**
17-
* {@inheritdoc}
18-
*/
1916
public static function getCandidates($type)
2017
{
2118
if (is_a(HttpClient::class, $type, true) || is_a(HttpAsyncClient::class, $type, true)) {

src/Strategy/PuliBetaStrategy.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,6 @@ private static function getPuliDiscovery()
7272
return self::$puliDiscovery;
7373
}
7474

75-
/**
76-
* {@inheritdoc}
77-
*/
7875
public static function getCandidates($type)
7976
{
8077
$returnData = [];

0 commit comments

Comments
 (0)