Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
syncsection.php
1<?php
3
6
8{
9 protected Section $section;
11
12 protected string $action = '';
13 protected string $vendorName;
14
19 {
21 }
22
29 {
30 $this->sectionConnection = $sectionConnection;
31
32 return $this;
33 }
34
38 public function getSection(): Section
39 {
40 return $this->section;
41 }
42
48 {
49 $this->section = $section;
50
51 return $this;
52 }
53
58 public function setAction(string $action): SyncSection
59 {
60 $this->action = $action;
61
62 return $this;
63 }
64
68 public function getAction(): string
69 {
70 return $this->action;
71 }
72
77 public function setVendorName(string $vendorName): SyncSection
78 {
79 $this->vendorName = $vendorName;
80
81 return $this;
82 }
83
87 public function getVendorName(): string
88 {
89 return $this->vendorName;
90 }
91
92}
setSectionConnection(?SectionConnection $sectionConnection)