ErrorCheck   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A call() 0 8 1
1
<?php
2
namespace Health\Checks;
3
4
/**
5
 * Error Check
6
 */
7
class ErrorCheck extends BaseCheck implements HealthCheckInterface
8
{
9
10
    /**
11
     *
12
     * {@inheritdoc}
13
     * @see \Health\Checks\HealthCheckInterface::call()
14
     */
15
    public function call()
16
    {
17
        $message = $this->getParam('message');
18
19
        return $this->getBuilder()
20
            ->down()
21
            ->withData('message', $message)
22
            ->build();
23
    }
24
}
25