Scalr\Tests\Functional\Ui\Controller\Account\UsersTest::_chk PHP Метод

_chk() защищенный Метод

protected _chk ( )
    protected function _chk()
    {
        return array('id' => $this->isType('numeric'), 'status' => $this->logicalOr($this->equalTo(null), $this->logicalAnd($this->isType('string'), $this->logicalOr($this->equalTo('Active'), $this->equalTo('Inactive')))), 'email' => $this->isType('string'), 'fullname', 'dtcreated' => $this->matchesRegularExpression('/.+\\s\\d{4}\\s\\d{2}:\\d{2}:\\d{2}/'), 'dtlastlogin' => $this->logicalOr($this->equalTo('Never'), $this->matchesRegularExpression('/.+\\s\\d{4}\\s\\d{2}:\\d{2}:\\d{2}/')), 'type' => $this->logicalOr($this->equalTo('Team Owner'), $this->equalTo('Account Owner'), $this->equalTo('Team User')), 'teams' => $this->isType('array'));
    }