GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Issues (3)

src/Test/ORM/EntityManagerMockFactory.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * (c) Christian Gripp <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Core23\Doctrine\Test\ORM;
13
14
use Closure;
15
use Doctrine\DBAL\Connection;
16
use Doctrine\ORM\AbstractQuery;
17
use Doctrine\ORM\EntityManager;
18
use Doctrine\ORM\EntityRepository;
19
use Doctrine\ORM\Mapping\ClassMetadataInfo;
20
use Doctrine\ORM\QueryBuilder;
21
use PHPUnit\Framework\MockObject\MockObject;
22
use PHPUnit\Framework\TestCase;
0 ignored issues
show
The type PHPUnit\Framework\TestCase was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
23
24
final class EntityManagerMockFactory
25
{
26
    /**
27
     * @param string[] $fields
28
     *
29
     * @return EntityManager|MockObject
30
     */
31
    public static function create(TestCase $test, Closure $qbCallback, array $fields): MockObject
32
    {
33
        $qb = $test->getMockBuilder(QueryBuilder::class)->disableOriginalConstructor()->getMock();
34
35
        self::prepareQueryBuilder($test, $qb);
36
37
        $qbCallback($qb);
38
39
        $repository = $test->getMockBuilder(EntityRepository::class)->disableOriginalConstructor()->getMock();
40
        $repository->method('createQueryBuilder')->willReturn($qb);
41
42
        $metadata = self::prepareMetadata($test, $fields);
43
44
        $connection = $test->getMockBuilder(Connection::class)->disableOriginalConstructor()->getMock();
45
46
        $em = $test->getMockBuilder(EntityManager::class)->disableOriginalConstructor()->getMock();
47
        $em->method('getRepository')->willReturn($repository);
48
        $em->method('getClassMetadata')->willReturn($metadata);
49
        $em->method('getConnection')->willReturn($connection);
50
51
        return $em;
52
    }
53
54
    private static function prepareQueryBuilder(TestCase $test, MockObject $qb): void
55
    {
56
        $query = $test->getMockBuilder(AbstractQuery::class)
57
            ->disableOriginalConstructor()->getMock();
58
        $query->method('execute')->willReturn(true);
59
60
        $qb->method('select')->willReturn($qb);
61
        $qb->method('getQuery')->willReturn($query);
62
        $qb->method('where')->willReturn($qb);
63
        $qb->method('orderBy')->willReturn($qb);
64
        $qb->method('andWhere')->willReturn($qb);
65
        $qb->method('leftJoin')->willReturn($qb);
66
    }
67
68
    /**
69
     * @param string[] $fields
70
     */
71
    private static function prepareMetadata(TestCase $test, array $fields): MockObject
72
    {
73
        $metadata = $test->getMockBuilder(ClassMetadataInfo::class)->disableOriginalConstructor()->getMock();
74
        $metadata->method('getFieldNames')->willReturn($fields);
75
        $metadata->method('getName')->willReturn('className');
76
        $metadata->method('getIdentifier')->willReturn(['id']);
77
        $metadata->method('getTableName')->willReturn('dummy');
78
79
        return $metadata;
80
    }
81
}
82