fix lint and test

This commit is contained in:
aslan 2024-03-13 11:04:38 +03:00
parent ebe604293f
commit 8a6e1bea3d
2 changed files with 5 additions and 20 deletions

View File

@ -56,7 +56,11 @@ class EntranceExaminationController extends Controller
Log::channel('app')
->info(
'CREATE вступ. испытания {entranceExamination} - user {user}',
['user' => Auth::user()->name, 'entranceExamination' => $entranceExamination->name, 'data' => $validated]
[
'user' => Auth::user()->name,
'entranceExamination' => $entranceExamination->name,
'data' => $validated
]
);
return redirect()->route('entrance_examinations.index');

View File

@ -1,19 +0,0 @@
<?php
namespace Tests\Feature;
// use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*/
public function testTheApplicationReturnsASuccessfulResponse(): void
{
$response = $this->get('/');
$response->assertStatus(200);
}
}