Smile-SA/magento2-module-custom-entity

View on GitHub
Api/Data/CustomEntityAttributeInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Smile\CustomEntity\Api\Data;

use Smile\ScopedEav\Api\Data\AttributeInterface;

interface CustomEntityAttributeInterface extends AttributeInterface
{
    /**
     * Entity code. Can be used as part of method name for entity processing.
     */
    public const ENTITY_TYPE_CODE = 'smile_custom_entity';
}