Completed
Push — master ( d8c280...2c0bc3 )
by Eric
02:35
created

functions.php ➔ monitorConsoleOutput()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
1
<?php
2
3
use EricMakesStuff\ServerMonitor\Helpers\ConsoleOutput;
4
5
/**
6
 * @return \EricMakesStuff\ServerMonitor\Helpers\ConsoleOutput
7
 */
8
function monitorConsoleOutput()
9
{
10
    return app(ConsoleOutput::class);
11
}
12