raoul2000\workflow\base\StatusIdConverter::setMap PHP Метод

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

Replace the convertion map initialized in constructor by the one passed as argument.
public setMap ( array $map )
$map array
    public function setMap($map)
    {
        if (!is_array($map)) {
            throw new InvalidCallException('The map argument must be an array');
        }
        $this->_map = $map;
    }