AthensFramework/core

View on GitHub
src/script/ScriptInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Athens\Core\Script;

use Athens\Core\Writable\WritableInterface;

interface ScriptInterface extends WritableInterface
{

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

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