eZ\Publish\Core\FieldType\Country\Value::__toString PHP Method

__toString() public method

See also: eZ\Publish\Core\FieldType\Value
public __toString ( )
    public function __toString()
    {
        return implode(', ', array_map(function ($country) {
            return $country['Name'];
        }, $this->countries));
    }