Fix PHPDoc comments project-wide
This commit is contained in:
parent
6077aa5847
commit
3282ce5389
113 changed files with 1703 additions and 795 deletions
|
@ -56,6 +56,7 @@ class Renderer extends BaseObject
|
|||
* @param array $vars key value pairs (search => replace)
|
||||
*
|
||||
* @return string substituted string
|
||||
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
||||
*/
|
||||
public static function replaceMacros($s, $vars)
|
||||
{
|
||||
|
@ -78,14 +79,15 @@ class Renderer extends BaseObject
|
|||
return $output;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Load a given template $s
|
||||
*
|
||||
* @param string $s Template to load.
|
||||
* @param string $root Optional.
|
||||
*
|
||||
* @return string template.
|
||||
*/
|
||||
/**
|
||||
* @brief Load a given template $s
|
||||
*
|
||||
* @param string $s Template to load.
|
||||
* @param string $root Optional.
|
||||
*
|
||||
* @return string template.
|
||||
* @throws Exception
|
||||
*/
|
||||
public static function getMarkupTemplate($s, $root = '')
|
||||
{
|
||||
$stamp1 = microtime(true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue