updating docblock

This commit is contained in:
Brian 2022-12-07 11:43:09 -07:00
parent 64d4d326b7
commit 6e7ded098b
Signed by: brian
GPG Key ID: DE1A5390A3B84CD8

View File

@ -1,23 +1,23 @@
<?php
// phpcs:ignore
/**
|--------------------------------------------------------------------------
| Global String Functions
|--------------------------------------------------------------------------
|
| This is a home for functions that don't belong to any one class and
| that should be available anywhere in the application.
|
*/
|--------------------------------------------------------------------------
| Global String Functions
|--------------------------------------------------------------------------
|
| This is a home for functions that don't belong to any one class and
| that should be available anywhere in the application.
|
*/
if (! function_exists('snake2Title')) {
/**
* Convert a snake case string to a title with spaces
* and every word capitalized.
*
* @since 1.0.0
* @param string $snakeSlug A snake case string, commonly a slug
*
* @param string $stakeSlug A snake case string, commonly a slug
* @since 1.0.0
*
* @return string
*/