Skip to content

Commit

Permalink
Moved phpdoc to union typehint
Browse files Browse the repository at this point in the history
  • Loading branch information
ViniTou committed Jul 10, 2024
1 parent 72a140b commit b115e5a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/lib/Invitation/InvitationServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,16 @@
use Ibexa\Core\MVC\Symfony\SiteAccess\SiteAccessServiceInterface;
use Ibexa\User\Invitation\InvitationService;
use Ibexa\User\Invitation\Persistence\Handler;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;

class InvitationServiceTest extends TestCase
{
private InvitationService $invitationService;

/** @var \Ibexa\Core\MVC\Symfony\SiteAccess\SiteAccessServiceInterface&\PHPUnit\Framework\MockObject\MockObject */
private SiteAccessServiceInterface $siteAccessService;
private SiteAccessServiceInterface&MockObject $siteAccessService;

/** @var \Ibexa\Contracts\Core\SiteAccess\ConfigResolverInterface&\PHPUnit\Framework\MockObject\MockObject */
private ConfigResolverInterface $configResolver;
private ConfigResolverInterface&MockObject $configResolver;

protected function setUp(): void
{
Expand Down

0 comments on commit b115e5a

Please sign in to comment.