added in vendor for prod
This commit is contained in:
29
vendor/salesforce/handlebars-php/src/Handlebars/Loader.php
vendored
Executable file
29
vendor/salesforce/handlebars-php/src/Handlebars/Loader.php
vendored
Executable file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/**
|
||||
* Handlebars loader interface
|
||||
*
|
||||
* @category Xamin
|
||||
* @package Handlebars
|
||||
* @author fzerorubigd <fzerorubigd@gmail.com>
|
||||
* @author Behrooz Shabani <everplays@gmail.com>
|
||||
* @copyright 2012 (c) ParsPooyesh Co
|
||||
* @copyright 2013 (c) Behrooz Shabani
|
||||
* @license MIT
|
||||
* @link http://voodoophp.org/docs/handlebars
|
||||
*/
|
||||
|
||||
namespace Handlebars;
|
||||
|
||||
interface Loader
|
||||
{
|
||||
|
||||
/**
|
||||
* Load a Template by name.
|
||||
*
|
||||
* @param string $name template name to load
|
||||
*
|
||||
* @return String
|
||||
*/
|
||||
public function load($name);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user