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;
        }
    }