mirror of
https://github.com/koel/koel
synced 2025-02-17 13:58:28 +00:00
Applied fixes from StyleCI
This commit is contained in:
parent
c0a6f14e02
commit
92aefb88ab
2 changed files with 2 additions and 2 deletions
|
@ -2,8 +2,8 @@
|
|||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use App\Facades\Util;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* @property int id The model ID
|
||||
|
|
|
@ -35,7 +35,7 @@ class ArtistTest extends TestCase
|
|||
|
||||
public function testUtf16Names()
|
||||
{
|
||||
$name = file_get_contents(dirname(__FILE__) . '/stubs/utf16');
|
||||
$name = file_get_contents(dirname(__FILE__).'/stubs/utf16');
|
||||
|
||||
$artist = Artist::get($name);
|
||||
$artist = Artist::get($name); // to make sure there's no constraint exception
|
||||
|
|
Loading…
Add table
Reference in a new issue