luyadev/luya

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

Summary

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

namespace luya\web\jsonld;

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

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