Issues (1019)

src/Components/MetricCollectorInterface.php (6 issues)

1
<?php
2
0 ignored issues
show
Missing file doc comment
Loading history...
3
namespace Hhxsv5\LaravelS\Components;
4
5
interface MetricCollectorInterface
0 ignored issues
show
Missing doc comment for interface MetricCollectorInterface
Loading history...
6
{
7
    /**
8
     * Collect the metrics
9
     * @param array $params
0 ignored issues
show
There must be exactly one blank line before the tags in a doc comment
Loading history...
Tag value for @param tag indented incorrectly; expected 2 spaces but found 1
Loading history...
Missing parameter comment
Loading history...
10
     * @return mixed
0 ignored issues
show
Tag @return cannot be grouped with parameter tags in a doc comment
Loading history...
11
     */
12
    public function collect(array $params = []);
13
}