core/web/jsonld/FoodEstablishment.php
<?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';
}
}