TwigOptions::setDebug()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
ccs 3
cts 3
cp 1
cc 1
eloc 2
nc 1
nop 1
crap 1
1
<?php
2
/**
3
 * Copyright (c) 2014 Roave, LLC.
4
 * All rights reserved.
5
 *
6
 * Redistribution and use in source and binary forms, with or without
7
 * modification, are permitted provided that the following conditions
8
 * are met:
9
 *
10
 *   * Redistributions of source code must retain the above copyright
11
 *     notice, this list of conditions and the following disclaimer.
12
 *
13
 *   * Redistributions in binary form must reproduce the above copyright
14
 *     notice, this list of conditions and the following disclaimer in
15
 *     the documentation and/or other materials provided with the
16
 *     distribution.
17
 *
18
 *   * Neither the names of the copyright holders nor the names of the
19
 *     contributors may be used to endorse or promote products derived
20
 *     from this software without specific prior written permission.
21
 *
22
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
30
 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
32
 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33
 * POSSIBILITY OF SUCH DAMAGE.
34
 *
35
 * @author Antoine Hedgecock
36
 *
37
 * @copyright 2014 Roave, LLC
38
 * @license http://www.opensource.org/licenses/bsd-license.php  BSD License
39
 */
40
41
namespace Roave\EmailTemplates\Options\Template\Engine;
42
43
use Zend\Stdlib\AbstractOptions;
44
45
/**
46
 * Class TwigOptions
47
 *
48
 * Configuration options for the twig rendering engine.
49
 */
50
class TwigOptions extends AbstractOptions
51
{
52
    /**
53
     * If we are in debug mode
54
     *
55
     * @var bool
56
     */
57
    protected $debug = false;
58
59
    /**
60
     * Which encoding should be used by twig
61
     *
62
     * @var string
63
     */
64
    protected $charset = 'utf8';
65
66
    /**
67
     * The directory in which twig stores the cached files
68
     *
69
     * @var string
70
     */
71
    protected $cache = 'data/cache/twig';
72
73
    /**
74
     * @var string
75
     */
76
    protected $autoescape = 'html';
77
78
    /**
79
     * @param string $autoescape
80
     */
81 1
    public function setAutoescape($autoescape)
82
    {
83 1
        $this->autoescape = (string) $autoescape;
84 1
    }
85
86
    /**
87
     * @return string
88
     */
89 1
    public function getAutoescape()
90
    {
91 1
        return $this->autoescape;
92
    }
93
94
    /**
95
     * @param string $cache
96
     */
97 1
    public function setCache($cache)
98
    {
99 1
        $this->cache = (string) $cache;
100 1
    }
101
102
    /**
103
     * @return string
104
     */
105 1
    public function getCache()
106
    {
107 1
        return $this->cache;
108
    }
109
110
    /**
111
     * @param string $charset
112
     */
113 1
    public function setCharset($charset)
114
    {
115 1
        $this->charset = (string) $charset;
116 1
    }
117
118
    /**
119
     * @return string
120
     */
121 1
    public function getCharset()
122
    {
123 1
        return $this->charset;
124
    }
125
126
    /**
127
     * @param boolean $debug
128
     */
129 1
    public function setDebug($debug)
130
    {
131 1
        $this->debug = $debug;
132 1
    }
133
134
    /**
135
     * @return boolean
136
     */
137 1
    public function getDebug()
138
    {
139 1
        return $this->debug;
140
    }
141
}
142