phug-php/phug

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

Summary

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

namespace Phug\Util\Partial;

/**
 * Class LevelTrait.
 */
trait LevelTrait
{
    use LevelGetTrait;

    /**
     * @param int $level
     *
     * @return $this
     */
    public function setLevel($level)
    {
        $this->level = $level;

        return $this;
    }
}