|
@@ -30,7 +30,10 @@ class TestCommand extends Command
|
|
|
{
|
|
|
$cartesianProduct = new CartesianProduct();
|
|
|
$cartesianProduct->appendSet(["a"]);
|
|
|
- $cartesianProduct->appendSet(['b', 'c']);
|
|
|
- dd($cartesianProduct->compute());
|
|
|
+ dump($cartesianProduct->compute());
|
|
|
+ $cartesianProduct = new CartesianProduct();
|
|
|
+ $cartesianProduct->appendSet(["a"]);
|
|
|
+ $cartesianProduct->appendSet(["b"]);
|
|
|
+ dump($cartesianProduct->compute());
|
|
|
}
|
|
|
}
|