luyadev/luya

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

Summary

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

namespace luya\web\jsonld;

/**
 * Food Establishment
 *
 * @author Basil Suter <basil@nadar.io>
 * @since 1.0.14
 */
class FoodEstablishment extends LocalBusiness implements FoodEstablishmentInterface
{
    use FoodEstablishmentTrait;

    /**
     * {@inheritDoc}
     */
    public function typeDefintion()
    {
        return 'FoodEstablishment';
    }
}