luyadev/luya

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

Summary

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

namespace luya\web\jsonld;

/**
 * JsonLd - Article
 *
 * An article, such as a news article or piece of investigative report.
 * Newspapers and magazines have articles of many different types and this is intended to cover them all.
 *
 * @see https://schema.org/Article
 *
 * @author Alex Schmid <alex.schmid@stud.unibas.ch>
 * @since 1.0.1
 */
class Article extends BaseThing implements ArticleInterface
{
    use ArticleTrait;
    /**
     * @inheritdoc
     */
    public function typeDefintion()
    {
        return 'Article';
    }
}