Skip to content

Commit

Permalink
Add constructor template in LargestSeriesProduct.php
Browse files Browse the repository at this point in the history
  • Loading branch information
realwahl authored Nov 7, 2023
1 parent c7fef69 commit 11a8ad1
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@

class Series
{
public function __construct(string $input)
{
throw new \BadMethodCallException("Implement the constructor method");
}

public function largestProduct(int $span): int
{
throw new \BadMethodCallException("Implement the largestProduct method");
Expand Down

0 comments on commit 11a8ad1

Please sign in to comment.