Skip to content

Commit

Permalink
Fix casing
Browse files Browse the repository at this point in the history
  • Loading branch information
shaedrich authored Dec 19, 2024
1 parent ece4942 commit 7a33e21
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Illuminate/Console/Scheduling/ManagesFrequencies.php
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ public function weekends()
*/
public function mondays()
{
return $this->days(Day::MONDAY);
return $this->days(Day::Monday);
}

/**
Expand All @@ -435,7 +435,7 @@ public function mondays()
*/
public function tuesdays()
{
return $this->days(Day::TUESDAY);
return $this->days(Day::Tuesday);
}

/**
Expand All @@ -445,7 +445,7 @@ public function tuesdays()
*/
public function wednesdays()
{
return $this->days(Day::WEDNESDAY);
return $this->days(Day::Wednesday);
}

/**
Expand All @@ -455,7 +455,7 @@ public function wednesdays()
*/
public function thursdays()
{
return $this->days(Day::THURSDAY);
return $this->days(Day::Thursday);
}

/**
Expand All @@ -465,7 +465,7 @@ public function thursdays()
*/
public function fridays()
{
return $this->days(Day::FRIDAY);
return $this->days(Day::Friday);
}

/**
Expand All @@ -475,7 +475,7 @@ public function fridays()
*/
public function saturdays()
{
return $this->days(Day::SATURDAY);
return $this->days(Day::Saturday);
}

/**
Expand All @@ -485,7 +485,7 @@ public function saturdays()
*/
public function sundays()
{
return $this->days(Day::SUNDAY);
return $this->days(Day::Sunday);
}

/**
Expand Down

0 comments on commit 7a33e21

Please sign in to comment.