14 lines
181 B
PHP
14 lines
181 B
PHP
|
<?php
|
||
|
|
||
|
use Songshenzong\Support\Strings;
|
||
|
|
||
|
if (!function_exists('strings')) {
|
||
|
/**
|
||
|
* @return Strings
|
||
|
*/
|
||
|
function strings()
|
||
|
{
|
||
|
return new Strings;
|
||
|
}
|
||
|
}
|