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\Zmsapi\Cli;
4
5use Ulrichsg\Getopt\Getopt;
6use Ulrichsg\Getopt\Option;
7
8class Status extends Base
9{
10    /**
11     * @SuppressWarnings(Parameter)
12     * @codeCoverageIgnore
13     *
14     */
15    public function cli(array $argv, \League\CLImate\CLImate $climate)
16    {
17        $status = (new \BO\Zmsdb\Status())->readEntity(\App::$now);
18        $climate->json($status);
19    }
20}