Completed
Pull Request — master (#8)
by Mickael
02:27
created

SearcherTrait   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A vendorName() 0 3 1
1
<?php
2
3
namespace ComposerLockParser;
4
5
trait SearcherTrait {
6
7
    /**
8
     * {@inheritDoc}
9
     */
10
    public function vendorName(string $vendorName = null): array
11
    {
12
        return ['great ! ' . $vendorName . ' Package has been found !'];
13
    }
14
}