Sha256: aa27d8b44f963449d386394f1e682dc67340eb32b33040a0df7d043b110ffa2e

Contents?: true

Size: 308 Bytes

Versions: 10

Compression:

Stored size: 308 Bytes

Contents

<?php

namespace MtHaml\Node;

use MtHaml\Escaping;

abstract class EscapableAbstract extends NodeAbstract
{
    private $escaping;

    public function getEscaping()
    {
        if (null === $this->escaping) {
            $this->escaping = new Escaping;
        }

        return $this->escaping;
    }
}

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
guard-mthaml-0.4.0 vendor/mthaml/mthaml/lib/MtHaml/Node/EscapableAbstract.php
guard-mthaml-0.3.1 vendor/mthaml/mthaml/lib/MtHaml/Node/EscapableAbstract.php
guard-mthaml-0.3.0 vendor/mthaml/mthaml/lib/MtHaml/Node/EscapableAbstract.php
guard-mthaml-0.2.5 vendor/mthaml/mthaml/lib/MtHaml/Node/EscapableAbstract.php
guard-mthaml-0.2.4 vendor/mthaml/mthaml/lib/MtHaml/Node/EscapableAbstract.php
guard-mthaml-0.2.3 vendor/mthaml/mthaml/lib/MtHaml/Node/EscapableAbstract.php
guard-mthaml-0.2.2 vendor/mthaml/mthaml/lib/MtHaml/Node/EscapableAbstract.php
guard-mthaml-0.2.1 vendor/mthaml/mthaml/lib/MtHaml/Node/EscapableAbstract.php
guard-mthaml-0.2.0 vendor/mthaml/mthaml/lib/MtHaml/Node/EscapableAbstract.php
guard-mthaml-0.1.0 vendor/mthaml/mthaml/lib/MtHaml/Node/EscapableAbstract.php