Spatie\MediaLibrary\Media::getCustomProperty PHP 메소드

getCustomProperty() 공개 메소드

Get if the value of custom property with the given name.
public getCustomProperty ( string $propertyName, mixed $default = null ) : mixed
$propertyName string
$default mixed
리턴 mixed
    public function getCustomProperty(string $propertyName, $default = null)
    {
        return $this->custom_properties[$propertyName] ?? $default;
    }