Remove deprecated Flarum\Util\Str class

This commit is contained in:
Franz Liedke 2020-03-04 22:59:14 +01:00
parent 2e6cd584aa
commit ec3e9c722b
No known key found for this signature in database
GPG Key ID: 9A0231A879B055F4

View File

@ -1,23 +0,0 @@
<?php
/*
* This file is part of Flarum.
*
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
*/
namespace Flarum\Util;
use Illuminate\Support\Str as Laravel;
class Str
{
/**
* @deprecated
*/
public static function slug($str)
{
return Laravel::slug($str);
}
}