pug-php/ci-pug

View on GitHub
Jade/Nodes/Each.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Jade\Nodes;

class Each extends Node
{
    public $obj;
    public $value;
    public $key;
    public $block;

    public function __construct($obj, $value, $key, $block = null)
    {
        $this->obj = $obj;
        $this->value = $value;
        $this->key = $key;
        $this->block = $block;
    }
}