123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace Symfony\Component\Templating\Helper;
- abstract class Helper implements HelperInterface
- {
- protected $charset = 'UTF-8';
-
- public function setCharset($charset)
- {
- $this->charset = $charset;
- }
-
- public function getCharset()
- {
- return $this->charset;
- }
- }
|