open-orchestra/open-orchestra-model-interface

View on GitHub
ModelInterface/Model/ReadContentAttributeInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace OpenOrchestra\ModelInterface\Model;

/**
 * Interface ReadContentAttributeInterface
 */
interface ReadContentAttributeInterface
{
    /**
     * @return string
     */
    public function getName();

    /**
     * @return string
     */
    public function getValue();

    /**
     * @return string
     */
    public function  getStringValue();
}