LeftJoin   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%
Metric Value
dl 0
loc 7
wmc 1
lcom 0
cbo 1
ccs 2
cts 2
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getJoinDeclaration() 0 4 1
1
<?php
2
3
namespace Muffin\Queries\Snippets\Joins;
4
5
use Muffin\Snippet;
6
7
class LeftJoin extends AbstractJoin implements Snippet
8
{
9 9
    protected function getJoinDeclaration()
10
    {
11 9
        return 'LEFT JOIN';
12
    }
13
}
14