phug-php/phug

View on GitHub
src/Phug/Util/Util/Partial/PathGetTrait.php

Summary

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

namespace Phug\Util\Partial;

/**
 * Class PathGetTrait.
 */
trait PathGetTrait
{
    /**
     * @var string
     */
    private $path = null;

    /**
     * @return string
     */
    public function getPath()
    {
        return $this->path;
    }
}