phug-php/util

View on GitHub
Util/SourceLocationInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Phug\Util;

interface SourceLocationInterface extends DocumentLocationInterface
{
    /**
     * @return int
     */
    public function getOffsetLength();

    public function setOffsetLength($offsetLength);

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