hendrikmaus/reynaldo

View on GitHub
src/Elements/ApiAsset.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace Hmaus\Reynaldo\Elements;

interface ApiAsset extends ApiElement
{
    /**
     * Get content type, e.g. text/plain
     *
     * @return string|null
     */
    public function getContentType();

    /**
     * Get content of the assets' body
     *
     * @return string|null
     */
    public function getBody();
}