pug-php/ci-pug

View on GitHub
Jade/Nodes/Mixin.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Jade\Nodes;

class Mixin extends Attributes
{
    public $name;
    public $arguments;
    public $block;
    public $attributes;
    public $call;

    public function __construct($name, $arguments, $block, $call)
    {
        $this->name = $name;
        $this->arguments = $arguments;
        $this->block = $block;
        $this->attributes = array();
        $this->call = $call;
    }
}