LaravelInterlink   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 9
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A single() 0 3 1
1
<?php
2
namespace KaqazStudio\LaravelInterlink;
3
4
use KaqazStudio\LaravelInterlink\Core\SingleInterlink;
5
6
class LaravelInterlink
7
{
8
    /**
9
     * Initialize Single Interlink core.
10
     * @return SingleInterlink
11
     */
12
    public function single(): SingleInterlink
13
    {
14
        return new SingleInterlink();
15
    }
16
}
17