yii\console\Controller::getPassedOptionValues PHP Метод

getPassedOptionValues() публичный Метод

Returns the properties corresponding to the passed options
public getPassedOptionValues ( ) : array
Результат array the properties corresponding to the passed options
    public function getPassedOptionValues()
    {
        $properties = [];
        foreach ($this->_passedOptions as $property) {
            $properties[$property] = $this->{$property};
        }
        return $properties;
    }