1 | <?php |
||
12 | final class ManagingChannelsBillingDataContext implements Context |
||
13 | { |
||
14 | /** @var ShopBillingDataElementInterface */ |
||
15 | private $shopBillingDataElement; |
||
16 | |||
17 | public function __construct(ShopBillingDataElementInterface $shopBillingDataElement) |
||
21 | |||
22 | /** |
||
23 | * @When I specify company as :company |
||
24 | */ |
||
25 | public function specifyCompanyAs(string $company): void |
||
29 | |||
30 | /** |
||
31 | * @When I specify tax ID as :taxId |
||
32 | */ |
||
33 | public function specifyTaxIdAs(string $taxId): void |
||
37 | |||
38 | /** |
||
39 | * @When I specify shop billing address as :street, :postcode :city, :country |
||
40 | */ |
||
41 | public function specifyShopBillingAddressAs( |
||
49 | |||
50 | /** |
||
51 | * @Then this channel company should be :company |
||
52 | */ |
||
53 | public function thisChannelCompanyShouldBe(string $company): void |
||
57 | |||
58 | /** |
||
59 | * @Then this channel tax ID should be :taxId |
||
60 | */ |
||
61 | public function thisChanneTaxIdShouldBe(string $taxId): void |
||
65 | |||
66 | /** |
||
67 | * @Then this channel shop billing address should be :street, :postcode :city, :country |
||
68 | */ |
||
69 | public function thisChannelShopBillingAddressShouldBe( |
||
77 | } |
||
78 |