29 lines
665 B
PHP
29 lines
665 B
PHP
<?php
|
|
|
|
/**
|
|
* ApiGen 2.8.0 - API documentation generator for PHP 5.3+
|
|
*
|
|
* Copyright (c) 2010-2011 David Grudl (http://davidgrudl.com)
|
|
* Copyright (c) 2011-2012 Jaroslav Hanslík (https://github.com/kukulich)
|
|
* Copyright (c) 2011-2012 Ondřej Nešpor (https://github.com/Andrewsville)
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the file LICENSE.md that was distributed with this source code.
|
|
*/
|
|
|
|
namespace ApiGen;
|
|
|
|
/**
|
|
* Helper set interface.
|
|
*/
|
|
interface IHelperSet
|
|
{
|
|
/**
|
|
* Tries to load the requested helper.
|
|
*
|
|
* @param string $helperName Helper name
|
|
* @return \Nette\Callback
|
|
*/
|
|
public function loader($helperName);
|
|
}
|