Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
SparkLee committed Mar 22, 2023
1 parent 0ccc746 commit c73b3a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Illuminate\Http\Request;
use Illuminate\Validation\ValidationException;

trait validatesOrgRequests
trait ValidatesOrgRequests
{
/**
* @throws ValidationException
Expand Down
4 changes: 2 additions & 2 deletions app/Http/Controllers/Restful/OrgMng/OrgController.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
use App\Application\OrgMng\OrgService\OrgService;
use App\Http\Controllers\Controller;
use App\Http\Controllers\RequestMapper;
use App\Http\Controllers\Restful\OrgMng\Concerns\validatesOrgRequests;
use App\Http\Controllers\Restful\OrgMng\Concerns\ValidatesOrgRequests;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
use Throwable;

class OrgController extends Controller
{
use validatesOrgRequests;
use ValidatesOrgRequests;

private OrgService $orgService;

Expand Down

0 comments on commit c73b3a0

Please sign in to comment.