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

constructSearchDomains()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 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