eZ\Publish\Core\FieldType\MapLocation\Value::__construct PHP Метод

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

Construct a new Value object and initialize with $values.
public __construct ( array $values = null )
$values array
    public function __construct(array $values = null)
    {
        foreach ((array) $values as $key => $value) {
            $this->{$key} = $value;
        }
    }