PhpBench\Environment\Provider\Uname::getInformation PHP Method

getInformation() public method

public getInformation ( )
    public function getInformation()
    {
        $uname = [];
        foreach (['os' => 's', 'host' => 'n', 'release' => 'r', 'version' => 'v', 'machine' => 'm'] as $key => $mode) {
            $uname[$key] = php_uname($mode);
        }
        return new Information('uname', $uname);
    }