Skip to content

Commit

Permalink
Fixed UndefinedDocblockClass
Browse files Browse the repository at this point in the history
  • Loading branch information
kedarkhaire committed Oct 15, 2024
1 parent 76adff7 commit a1588b3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Api/Management/Query/StatsQueryNormalizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
use Apigee\Edge\Serializer\JsonEncoder;
use DateTimeZone;
use StatsQuery;
use StatsQueryInterface;
use Symfony\Component\Serializer\Normalizer\AbstractNormalizer;
use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
use Symfony\Component\Serializer\Normalizer\ObjectNormalizer;
Expand Down Expand Up @@ -105,7 +104,7 @@ public function supportsNormalization($data, $format = null)
public function getSupportedTypes(?string $format): array
{
return [
StatsQueryInterface::class => true,
StatsQuery::class => true,

Check failure on line 107 in src/Api/Management/Query/StatsQueryNormalizer.php

View workflow job for this annotation

GitHub Actions / test_and_lint (8.1, )

UndefinedClass

src/Api/Management/Query/StatsQueryNormalizer.php:107:13: UndefinedClass: Class, interface or enum named StatsQuery does not exist (see https://psalm.dev/019)

Check failure on line 107 in src/Api/Management/Query/StatsQueryNormalizer.php

View workflow job for this annotation

GitHub Actions / test_and_lint (8.1, --prefer-lowest)

UndefinedClass

src/Api/Management/Query/StatsQueryNormalizer.php:107:13: UndefinedClass: Class, interface or enum named StatsQuery does not exist (see https://psalm.dev/019)

Check failure on line 107 in src/Api/Management/Query/StatsQueryNormalizer.php

View workflow job for this annotation

GitHub Actions / test_and_lint (8.2, )

UndefinedClass

src/Api/Management/Query/StatsQueryNormalizer.php:107:13: UndefinedClass: Class, interface or enum named StatsQuery does not exist (see https://psalm.dev/019)

Check failure on line 107 in src/Api/Management/Query/StatsQueryNormalizer.php

View workflow job for this annotation

GitHub Actions / test_and_lint (8.2, --prefer-lowest)

UndefinedClass

src/Api/Management/Query/StatsQueryNormalizer.php:107:13: UndefinedClass: Class, interface or enum named StatsQuery does not exist (see https://psalm.dev/019)

Check failure on line 107 in src/Api/Management/Query/StatsQueryNormalizer.php

View workflow job for this annotation

GitHub Actions / test_and_lint (8.3, )

UndefinedClass

src/Api/Management/Query/StatsQueryNormalizer.php:107:13: UndefinedClass: Class, interface or enum named StatsQuery does not exist (see https://psalm.dev/019)

Check failure on line 107 in src/Api/Management/Query/StatsQueryNormalizer.php

View workflow job for this annotation

GitHub Actions / test_and_lint (8.3, --prefer-lowest)

UndefinedClass

src/Api/Management/Query/StatsQueryNormalizer.php:107:13: UndefinedClass: Class, interface or enum named StatsQuery does not exist (see https://psalm.dev/019)
];
}
}

0 comments on commit a1588b3

Please sign in to comment.