luyadev/luya

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

Summary

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

namespace luya\web\jsonld;

/**
 * JsonLd ImageObject.
 *
 * @see https://schema.org/ImageObject
 * @author Basil Suter <basil@nadar.io>
 * @since 1.0.3
 */
class ImageObject extends BaseThing implements ImageObjectInterface
{
    use ImageObjectTrait;

    /**
     * @inheritdoc
     */
    public function typeDefintion()
    {
        return 'ImageObject';
    }
}