open-orchestra/open-orchestra-model-interface

View on GitHub
ModelInterface/ContentTypeEvents.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace OpenOrchestra\ModelInterface;

/**
 * Class ContentTypeEvents
 */
class ContentTypeEvents
{
    const CONTENT_TYPE_CREATE = 'contentType.create';
    const CONTENT_TYPE_DELETE = 'contentType.delete';
    const CONTENT_TYPE_UPDATE = 'contentType.update';
}