Skip to content

Commit

Permalink
feat: add missing singular minute() call (#39050)
Browse files Browse the repository at this point in the history
  • Loading branch information
owenvoke authored Oct 1, 2021
1 parent 8918a9d commit 568e741
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/Illuminate/Foundation/Testing/Wormhole.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,17 @@ public function seconds($callback = null)
return $this->handleCallback($callback);
}

/**
* Travel forward the given number of minutes.
*
* @param callable|null $callback
* @return mixed
*/
public function minute($callback = null)
{
return $this->minutes($callback);
}

/**
* Travel forward the given number of minutes.
*
Expand Down

0 comments on commit 568e741

Please sign in to comment.