예제 #1
0
 /**
  * Determine if a given string ends with a given substring.
  *
  * @param string $haystack
  * @param string|array $needles
  * @return bool 
  * @static 
  */
 public static function endsWith($haystack, $needles)
 {
     //Method inherited from \Illuminate\Support\Str
     return \October\Rain\Support\Str::endsWith($haystack, $needles);
 }