Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit ead5bfd

Browse files
authored
Apply fixes from StyleCI (#153)
1 parent 79bc881 commit ead5bfd

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

app/Http/Controllers/Admin/Dashboard/AdminDashboardController.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ public function index()
2828
$mentorshipSummary = [];
2929
$menteeMentorProfiles = MenteeProfile::whereHas('mentorProfiles')->get();
3030
foreach ($menteeMentorProfiles as $mentee) {
31-
$summary;
3231
$menteeUser = $mentee->user;
3332
$summary['menteeFirstName'] = $menteeUser->first_name;
3433
$summary['menteeLastName'] = $menteeUser->last_name;

app/Http/Controllers/Profiles/MentorProfileController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function create()
3535
/**
3636
* Store a newly created resource in storage.
3737
*
38-
* @param \App\Http\Requests\MentorProfileRequest $request
38+
* @param \App\Http\Requests\MentorProfileRequest $request
3939
* @return \Illuminate\Http\Response
4040
*/
4141
public function store(MentorProfileRequest $request)

0 commit comments

Comments
 (0)