mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
Applied fixes from StyleCI
This commit is contained in:
parent
4864759407
commit
9dc423f430
3 changed files with 4 additions and 4 deletions
|
@ -3,9 +3,9 @@
|
|||
namespace App\Http\Controllers\API;
|
||||
|
||||
use App\Http\Streamers\PHPStreamer;
|
||||
use App\Http\Streamers\TranscodingStreamer;
|
||||
use App\Http\Streamers\XAccelRedirectStreamer;
|
||||
use App\Http\Streamers\XSendFileStreamer;
|
||||
use App\Http\Streamers\TranscodingStreamer;
|
||||
use App\Models\Song;
|
||||
|
||||
class SongController extends Controller
|
||||
|
|
|
@ -27,7 +27,7 @@ class ApplicationTest extends TestCase
|
|||
{
|
||||
putenv('CDN_URL');
|
||||
|
||||
$manifestFile = dirname(__FILE__) . '/blobs/rev-manifest.json';
|
||||
$manifestFile = dirname(__FILE__).'/blobs/rev-manifest.json';
|
||||
$this->assertEquals(App::rev('foo.css', $manifestFile), '/public/build/foo00.css');
|
||||
|
||||
putenv('CDN_URL=http://cdn.bar');
|
||||
|
@ -37,7 +37,7 @@ class ApplicationTest extends TestCase
|
|||
public function testGetLatestVersion()
|
||||
{
|
||||
$mock = new MockHandler([
|
||||
new Response(200, [], file_get_contents(dirname(__FILE__) . '/blobs/github-tags.json')),
|
||||
new Response(200, [], file_get_contents(dirname(__FILE__).'/blobs/github-tags.json')),
|
||||
]);
|
||||
|
||||
$client = new Client(['handler' => HandlerStack::create($mock)]);
|
||||
|
|
Loading…
Reference in a new issue