Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
35 | { |
||
36 | return $this->getURLEncodeToken() !== null; |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @param bool $encoding |
||
41 | * @return $this |
||
42 | * @throws Mailcode_Exception |
||
43 | */ |
||
44 | public function setURLEncoding(bool $encoding=true) : self |
||
45 | { |
||
46 | return $this->setEncodingEnabled(Mailcode_Commands_Keywords::TYPE_URLENCODE, $encoding); |
||
47 | } |
||
48 | } |
||
49 |