qr_generator-1.0.1/src/QRCodeInterface.php
src/QRCodeInterface.php
<?php
declare(strict_types=1);
namespace Drupal\qr_generator;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityChangedInterface;
use Drupal\user\EntityOwnerInterface;
/**
* Provides an interface defining a qr code entity type.
*/
interface QRCodeInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {
}
