Spatie\MediaLibrary\Media::removeCustomProperty PHP Méthode

removeCustomProperty() public méthode

public removeCustomProperty ( string $name )
$name string
    public function removeCustomProperty(string $name)
    {
        if ($this->hasCustomProperty($name)) {
            $customProperties = $this->custom_properties;
            unset($customProperties[$name]);
            $this->custom_properties = $customProperties;
        }
        return $this;
    }