mirror of
https://github.com/Mibew/handlebars.php.git
synced 2025-04-08 16:20:12 +03:00
34 lines
777 B
PHP
34 lines
777 B
PHP
<?php
|
|
/**
|
|
* This file is part of Handlebars-php
|
|
*
|
|
* PHP version 5.3
|
|
*
|
|
* @category Xamin
|
|
* @package Handlebars
|
|
* @author Dmitriy Simushev <simushevds@gmail.com>
|
|
* @copyright 2014 Authors
|
|
* @license MIT <http://opensource.org/licenses/MIT>
|
|
* @version GIT: $Id$
|
|
* @link http://xamin.ir
|
|
*/
|
|
|
|
namespace Handlebars;
|
|
|
|
/**
|
|
* Handlebars safe string. Can be used in line helpers as wrapper for result to
|
|
* indicate that there is no need to escape the result.
|
|
*
|
|
* @category Xamin
|
|
* @package Handlebars
|
|
* @author Dmitriy Simushev <simushevds@gmail.com>
|
|
* @copyright 2014 Authors
|
|
* @license MIT <http://opensource.org/licenses/MIT>
|
|
* @version Release: @package_version@
|
|
* @link http://xamin.ir
|
|
*/
|
|
|
|
class SafeString extends BaseString
|
|
{
|
|
}
|