tonicforhealth/health-checker-check

Base interface and abstract level of the checker for health-checker

v0.2.1 2016-09-16 10:01 UTC

This package is not auto-updated.

Last update: 2024-04-17 17:19:09 UTC


README

License Build Status Scrutinizer Code Quality Code Coverage SensioLabsInsight

This is base interface and abstract level of the checker.

Installation using Composer

$ composer require tonicforhealth/health-checker-check

Requirements

  • PHP 5.5 or higher

Usage

<?php

use TonicHealthCheck\Check\AbstractCheck;

class WeekendCheck extends AbstractCheck
{
    const GROUP = 'date';
    const COMPONENT = 'weekend';
    const CHECK = 'weekend-date-check';

    public function __construct($checkNode)
    {
        parent::__construct($checkNode);
    }

    /**
     * @throws giCheckException
     */
    public function performCheck()
    {
        if ($this->isNotWeekend(date())) {
            throw new CheckException('Unfortunately weekend isn\'t today.');
        }
    }

    protected function isNotWeekend($date)
    {
        return date('N', strtotime($date)) >= 6;
    }
}

$WeekendCheckI = new WeekendCheck('testnode');

$result = $WeekendCheckI->check();

if (!$result->isOk()) {
    echo $result->getError()->getMessage();
}