phug-php/util

View on GitHub
Util/Partial/PathTrait.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Phug\Util\Partial;

/**
 * Class PathTrait.
 */
trait PathTrait
{
    use PathGetTrait;

    /**
     * @param string $path
     *
     * @return $this
     */
    public function setPath($path)
    {
        $this->path = $path;

        return $this;
    }
}