Browse Source

Merge branch 'develop'

master
Guillaume 2 years ago
parent
commit
df3575fd13
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      Factory/Reduction/ReductionCatalogFactory.php

+ 2
- 2
Factory/Reduction/ReductionCatalogFactory.php View File

class ReductionCatalogFactory extends AbstractFactory class ReductionCatalogFactory extends AbstractFactory
{ {


public function create(MerchantInterface $merchant): ReductionCatalogInterface
public function create(MerchantInterface $merchant, int $status = 1): ReductionCatalogInterface
{ {
$reductionCatalog = new ReductionCatalog(); $reductionCatalog = new ReductionCatalog();


$reductionCatalog->setMerchant($merchant); $reductionCatalog->setMerchant($merchant);
$reductionCatalog->setStatus(1);
$reductionCatalog->setStatus($status);


return $reductionCatalog; return $reductionCatalog;
} }

Loading…
Cancel
Save