YiiRequirementChecker::getResult PHP Method

getResult() public method

Return the check results.
public getResult ( ) : array | null
return array | null check results in format: ```php array( 'summary' => array( 'total' => total number of checks, 'errors' => number of errors, 'warnings' => number of warnings, ), 'requirements' => array( array( ... 'error' => is there an error, 'warning' => is there a warning, ), ... ), ) ```
    function getResult()
    {
        if (isset($this->result)) {
            return $this->result;
        } else {
            return null;
        }
    }