41 public function __construct(array $ingredients, array $results, ShapelessRecipeType $type){
44 if(count($ingredients) > 9){
45 throw new \InvalidArgumentException(
"Shapeless recipes cannot have more than 9 ingredients");
47 $this->ingredients = $ingredients;
48 $this->results = Utils::cloneObjectArray($results);