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.

LeftJoin::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
c 0
b 0
f 0
rs 9.4285
cc 1
eloc 3
nc 1
nop 3
1
<?php
2
3
namespace Rb\Specification\Doctrine\Query;
4
5
use Rb\Specification\Doctrine\Exception\InvalidArgumentException;
6
7
class LeftJoin extends Join
8
{
9
    /**
10
     * @param string      $field
11
     * @param string      $newAlias
12
     * @param string|null $dqlAlias
13
     *
14
     * @throws InvalidArgumentException
15
     */
16
    public function __construct($field, $newAlias, $dqlAlias = null)
17
    {
18
        $this->setType(self::LEFT_JOIN);
19
        parent::__construct($field, $newAlias, $dqlAlias);
20
    }
21
}
22