We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3a686c commit 392f3a5Copy full SHA for 392f3a5
exercises/practice/largest-series-product/LargestSeriesProduct.php
@@ -26,6 +26,11 @@
26
27
class Series
28
{
29
+ public function __construct(string $input)
30
+ {
31
+ throw new \BadMethodCallException("Implement the constructor method");
32
+ }
33
+
34
public function largestProduct(int $span): int
35
36
throw new \BadMethodCallException("Implement the largestProduct method");
0 commit comments