ErrorCheck::call()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

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