Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
Status
n/a
0 / 0
n/a
0 / 0
1
n/a
0 / 0
 cli
n/a
0 / 0
n/a
0 / 0
1
1<?php
2
3namespace BO\Zmsbackend\Cli;
4
5class Status extends \BO\Zmsbackend\Base
6{
7    /**
8     * @SuppressWarnings(Parameter)
9     * @codeCoverageIgnore
10     *
11     */
12    public function cli(array $argv, \League\CLImate\CLImate $climate)
13    {
14        $status = (new \BO\Zmsbackend\Status\Service\Status())->readEntity(\App::$now);
15        $climate->json($status);
16    }
17}