mirror of
https://github.com/koel/koel
synced 2024-11-28 15:00:42 +00:00
Merge pull request #99 from phanan/analysis-8jee9z
Applied fixes from StyleCI
This commit is contained in:
commit
9a134f565c
2 changed files with 2 additions and 2 deletions
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
namespace App\Models;
|
namespace App\Models;
|
||||||
|
|
||||||
use Illuminate\Database\Eloquent\Model;
|
|
||||||
use App\Facades\Util;
|
use App\Facades\Util;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @property int id The model ID
|
* @property int id The model ID
|
||||||
|
|
|
@ -35,7 +35,7 @@ class ArtistTest extends TestCase
|
||||||
|
|
||||||
public function testUtf16Names()
|
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);
|
||||||
$artist = Artist::get($name); // to make sure there's no constraint exception
|
$artist = Artist::get($name); // to make sure there's no constraint exception
|
||||||
|
|
Loading…
Reference in a new issue