for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Copyright (c) Flipbox Digital Limited
* @license https://github.com/flipboxfactory/craft-ember/blob/master/LICENSE
* @link https://github.com/flipboxfactory/craft-ember/
*/
namespace flipbox\craft\ember\models;
use Craft;
* @author Flipbox Factory <[email protected]>
* @since 2.0.0
trait StateAttributeTrait
{
use StateRulesTrait, \flipbox\craft\ember\objects\StateAttributeTrait;
* @inheritdoc
public function stateAttributeLabels(): array
return [
'state' => Craft::t('app', 'State')
];
}