phug-php/util

View on GitHub
Util/ScopeInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Phug\Util;

/**
 * Interface ScopeInterface.
 */
interface ScopeInterface
{
    /**
     * @param array $options
     *
     * @return $this
     */
    public function setOptions($options);

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