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
1 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
namespace Icinga\Util;
/**
* Common string helper
* Common string functions
*/
class String
{
@ -103,8 +103,8 @@ class String
/**
* Check if a string ends with a different string
*
* @param $haystack The string to search for matches
* @param $needle The string to match at the start of the haystack
* @param $haystack string The string to search for matches
* @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
*/