phug-php/phug

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

Summary

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

namespace Phug\Util\Partial;

/**
 * Class LevelGetTrait.
 */
trait LevelGetTrait
{
    /**
     * @var int
     */
    private $level = 0;

    /**
     * @return int
     */
    public function getLevel()
    {
        return $this->level;
    }
}