Fix PHPDoc in the String helper

This commit is contained in:
Eric Lippmann 2015-08-19 12:50:05 +02:00
parent 65806fafbf
commit 7abc5778ea

View File

@ -4,7 +4,7 @@
namespace Icinga\Util; namespace Icinga\Util;
/** /**
* Common string helper * Common string functions
*/ */
class String class String
{ {
@ -103,8 +103,8 @@ class String
/** /**
* Check if a string ends with a different string * Check if a string ends with a different string
* *
* @param $haystack The string to search for matches * @param $haystack string The string to search for matches
* @param $needle The string to match at the start of the haystack * @param $needle string The string to match at the start of the haystack
* *
* @return bool Whether or not needle is at the beginning of haystack * @return bool Whether or not needle is at the beginning of haystack
*/ */