pug-php/ci-pug

View on GitHub
Jade/Nodes/Text.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Jade\Nodes;

class Text extends Node
{
    public $isText = true;
    public $value = '';

    public function __construct($line)
    {
        if (is_string($line)) {
            $this->value = $line;
        }
    }
}