Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2/**
3 * Pop PHP Framework (http://www.popphp.org/)
4 *
5 * @link       https://github.com/popphp/popphp-framework
6 * @author     Nick Sagona, III <dev@nolainteractive.com>
7 * @copyright  Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com)
8 * @license    http://www.popphp.org/license     New BSD License
9 */
10
11/**
12 * @namespace
13 */
14namespace Pop\Code\Generator;
15
16/**
17 * Generator interface
18 *
19 * @category   Pop
20 * @package    Pop\Code
21 * @author     Nick Sagona, III <dev@nolainteractive.com>
22 * @copyright  Copyright (c) 2009-2024 NOLA Interactive, LLC. (http://www.nolainteractive.com)
23 * @license    http://www.popphp.org/license     New BSD License
24 * @version    5.0.0
25 */
26interface GeneratorInterface
27{
28
29    /**
30     * Set the indent
31     *
32     * @param  int $indent
33     * @return GeneratorInterface
34     */
35    public function setIndent(int $indent): GeneratorInterface;
36
37    /**
38     * Get the indent
39     *
40     * @return int
41     */
42    public function getIndent(): int;
43
44    /**
45     * Has indent
46     *
47     * @return bool
48     */
49    public function hasIndent(): bool;
50
51    /**
52     * Print the indent
53     *
54     * @return string
55     */
56    public function printIndent(): string;
57
58    /**
59     * Get the output
60     *
61     * @return string
62     */
63    public function getOutput(): string;
64
65    /**
66     * Has output
67     *
68     * @return bool
69     */
70    public function hasOutput(): bool;
71
72    /**
73     * Is rendered (alias to hasOutput())
74     *
75     * @return bool
76     */
77    public function isRendered(): bool;
78
79    /**
80     * Render method
81     *
82     * @return string
83     */
84    public function render(): string;
85
86}