Fix incorrect or missing type annotations.

This commit is contained in:
Justin Hileman
2014-03-25 07:31:04 -07:00
parent 22a47452da
commit f696e7afa6
15 changed files with 41 additions and 7 deletions
@@ -112,6 +112,9 @@ class Mustache_Test_Functional_Foo
return sprintf('<em>%s</em>', $text);
}
/**
* @param string $text
*/
public function wrapWithStrong($text)
{
return sprintf('<strong>%s</strong>', $text);
@@ -132,7 +132,8 @@ class Mustache_Test_Functional_MustacheSpecTest extends PHPUnit_Framework_TestCa
*
* Loads YAML files from the spec and converts them to PHPisms.
*
* @access public
* @param string $name
*
* @return array
*/
private function loadSpec($name)