Isue Fixed

This commit is contained in:
devansh bawari 2020-10-09 19:58:55 +05:30
parent 3d060d63d5
commit 724774c1bc
1 changed files with 1 additions and 3 deletions

View File

@ -17,7 +17,5 @@ return [
// Return neither true nor false but null by default to not interrupt the default chain that
// defines if a product is saleable. It depends on the isSaleable() method of the product
// type if this callable is obeyed.
'isSaleable' => function (Product $product): ?bool {
return null;
},
'isSaleable' => null,
];