pug-php/ci-pug

View on GitHub
Jade/Nodes/Comment.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Jade\Nodes;

class Comment extends Node
{
    public $value;
    public $buffer;

    public function __construct($value, $buffer)
    {
        $this->value = $value;
        $this->buffer = $buffer;
    }
}