@@ -22,9 +22,6 @@ class MessageOptions
2222 #[ORM \Column(name: 'userselection ' , type: 'text ' , nullable: true )]
2323 private ?string $ userSelection ;
2424
25- #[ORM \Column(name: 'sendstart ' , type: 'datetime ' , nullable: true )]
26- private ?DateTime $ sendStart ;
27-
2825 #[ORM \Column(name: 'rsstemplate ' , type: 'string ' , length: 100 , nullable: true )]
2926 private ?string $ rssTemplate ;
3027
@@ -33,14 +30,12 @@ public function __construct(
3330 string $ toField = '' ,
3431 string $ replyTo = '' ,
3532 ?string $ userSelection = null ,
36- ?DateTime $ sendStart = null ,
3733 ?string $ rssTemplate = null
3834 ) {
3935 $ this ->fromField = $ fromField ;
4036 $ this ->toField = $ toField ;
4137 $ this ->replyTo = $ replyTo ;
4238 $ this ->userSelection = $ userSelection ;
43- $ this ->sendStart = $ sendStart ;
4439 $ this ->rssTemplate = $ rssTemplate ;
4540 }
4641
@@ -64,11 +59,6 @@ public function getUserSelection(): ?string
6459 return $ this ->userSelection ;
6560 }
6661
67- public function getSendStart (): ?DateTime
68- {
69- return $ this ->sendStart ;
70- }
71-
7262 public function getRssTemplate (): ?string
7363 {
7464 return $ this ->rssTemplate ;
@@ -98,12 +88,6 @@ public function setUserSelection(?string $userSelection): self
9888 return $ this ;
9989 }
10090
101- public function setSendStart (?DateTime $ sendStart ): self
102- {
103- $ this ->sendStart = $ sendStart ;
104- return $ this ;
105- }
106-
10791 public function setRssTemplate (?string $ rssTemplate ): self
10892 {
10993 $ this ->rssTemplate = $ rssTemplate ;
0 commit comments