Completed
Push — master ( 071f6e...2ed909 )
by Seth
25:30
created

AbstractSearchDomainFactory   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 13
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A constructSearchDomains() 0 4 1
1
<?php
2
3
namespace smtech\StMarksSearch;
4
5
abstract class AbstractSearchDomainFactory extends ParameterArrayConstructor
6
{
7
    /**
8
     * Construct an array of search domains
9
     *
10
     * @param mixed[string] $params
1 ignored issue
show
Documentation introduced by
The doc-type mixed[string] could not be parsed: Expected "]" at position 2, but found "string". (view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
11
     * @return AbstractSearchDomain[]
12
     */
13
    public static function constructSearchDomains($params)
14
    {
15
        return [];
16
    }
17
}
18