Skip to content

Commit

Permalink
[EPC-9489] Update ignore notation
Browse files Browse the repository at this point in the history
  • Loading branch information
Can Demiralp committed Jan 31, 2025
1 parent 99e706a commit e11ede7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Test/api-functional/GraphQl/AdyenTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class AdyenTest extends GraphQlAbstract
protected function setUp(): void
{
$objectManager = Bootstrap::getObjectManager();
/** @phpstan-ignore class.notFound */
// @phpstan-ignore class.notFound
$this->getMaskedQuoteIdByReservedOrderId = $objectManager->get(GetMaskedQuoteIdByReservedOrderId::class);
$this->customerTokenService = $objectManager->get(CustomerTokenServiceInterface::class);
}
Expand Down
2 changes: 1 addition & 1 deletion Test/api-functional/Webapi/ChannelParameterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ChannelParameterTest extends WebapiAbstract
protected function setUp(): void
{
$objectManager = Bootstrap::getObjectManager();
/** @phpstan-ignore class.notFound */
// @phpstan-ignore class.notFound
$this->getMaskedQuoteIdByReservedOrderId = $objectManager->get(GetMaskedQuoteIdByReservedOrderId::class);
$this->customerTokenService = $objectManager->get(CustomerTokenServiceInterface::class);
}
Expand Down
3 changes: 1 addition & 2 deletions Test/api-functional/Webapi/DonationsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,10 @@ class DonationsTest extends WebapiAbstract

private $maskedQuoteId;


protected function setUp(): void
{
$objectManager = Bootstrap::getObjectManager();
/** @phpstan-ignore class.notFound */
// @phpstan-ignore class.notFound
$this->getMaskedQuoteIdByReservedOrderId = $objectManager->get(GetMaskedQuoteIdByReservedOrderId::class);
$this->customerTokenService = $objectManager->get(CustomerTokenServiceInterface::class);
}
Expand Down

0 comments on commit e11ede7

Please sign in to comment.