GDS\Schema::addStringList PHP Method

addStringList() public method

Add a string-list (array of strings) field to the schema
public addStringList ( $str_name, boolean $bol_index = TRUE ) : Schema
$str_name
$bol_index boolean
return Schema
    public function addStringList($str_name, $bol_index = TRUE)
    {
        return $this->addProperty($str_name, self::PROPERTY_STRING_LIST, $bol_index);
    }