17 lines
212 B
PHP
17 lines
212 B
PHP
|
<?php
|
||
|
|
||
|
namespace Songshenzong\Support;
|
||
|
|
||
|
use Songshenzong\Support\Traits\Str;
|
||
|
use Songshenzong\Support\Traits\Uri;
|
||
|
|
||
|
/**
|
||
|
* Class Strings
|
||
|
*
|
||
|
* @package Songshenzong\Support
|
||
|
*/
|
||
|
class Strings
|
||
|
{
|
||
|
use Str, Uri;
|
||
|
}
|