luyadev/luya

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

Summary

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

namespace luya\web\jsonld;

/**
 * JsonLd - Creative Work
 *
 * The most generic kind of creative work, including books, movies, photographs, software programs, etc.
 *
 * @see https://schema.org/CreativeWork
 *
 * @author Alex Schmid <alex.schmid@stud.unibas.ch>
 * @since 1.0.1
 */
class CreativeWork extends BaseThing implements CreativeWorkInterface
{
    use CreativeWorkTrait;
    /**
     * @inheritdoc
     */
    public function typeDefintion()
    {
        return 'CreativeWork';
    }
}