luyadev/luya

View on GitHub
core/web/jsonld/BaseValue.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace luya\web\jsonld;

/**
 * Represents any value object.
 *
 * Value objects are used to formate the value of a property.
 *
 * @author Basil Suter <basil@nadar.io>
 * @since 1.0.3
 */
abstract class BaseValue
{
    /**
     * Get the value to assign from BaseValue.
     */
    abstract public function getValue();
}