Skip to content

Commit b82b0d6

Browse files
committed
minor #15999 Remove unused param from LeapYearController::index (laurixyz)
This PR was submitted for the 5.3 branch but it was merged into the 4.4 branch instead. Discussion ---------- Remove unused param from LeapYearController::index Commits ------- bf28d09 Remove unused param from LeapYearController::index
2 parents 3753606 + bf28d09 commit b82b0d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

create_framework/http_kernel_httpkernel_class.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ instead of a full Response object::
133133

134134
class LeapYearController
135135
{
136-
public function index(Request $request, $year)
136+
public function index($year)
137137
{
138138
$leapYear = new LeapYear();
139139
if ($leapYear->isLeapYear($year)) {

0 commit comments

Comments
 (0)