luyadev/luya

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

Summary

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

namespace luya\web\jsonld;

/**
 * JsonLd - Place
 *
 * Entities that have a somewhat fixed, physical extension.
 *
 * @see https://schema.org/Place
 *
 * @author Alex Schmid
 * @since 1.0.0
 */
class Place extends BaseThing implements PlaceInterface
{
    use PlaceTrait;
    /**
     * @inheritdoc
     */
    public function typeDefintion()
    {
        return 'Place';
    }
}