File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -131,11 +131,6 @@ class Client extends AbstractEntity
131131 */
132132 protected $ lastSuccessfulImport = null ;
133133
134- /**
135- * @var \T3Monitor\T3monitoring\Domain\Model\CheckResult
136- */
137- protected $ earlierCheckResult ;
138-
139134 /**
140135 * @var \T3Monitor\T3monitoring\Domain\Model\CheckResult
141136 */
@@ -783,22 +778,6 @@ public function getExtraDangerAsArray()
783778 return [];
784779 }
785780
786- /**
787- * @return \T3Monitor\T3monitoring\Domain\Model\CheckResult
788- */
789- public function getEarlierCheckResult ()
790- {
791- return $ this ->earlierCheckResult ;
792- }
793-
794- /**
795- * @param \T3Monitor\T3monitoring\Domain\Model\CheckResult $earlierCheckResult
796- */
797- public function setEarlierCheckResult (CheckResult $ earlierCheckResult )
798- {
799- $ this ->earlierCheckResult = $ earlierCheckResult ;
800- }
801-
802781 /**
803782 * @return \T3Monitor\T3monitoring\Domain\Model\CheckResult
804783 */
Original file line number Diff line number Diff line change @@ -140,8 +140,6 @@ protected function importSingleClient(array $row)
140140 $ resolverData = new ResolverData ($ row , $ json , $ responseHeaders );
141141 $ checkResult = $ this ->checkResultService ->createCheckResult ($ resolverData );
142142 $ json = $ resolverData ->getResponse ();
143-
144- $ update ['earlier_check_result ' ] = $ row ['check_result ' ];
145143 $ update ['check_result ' ] = $ checkResult ->getUid ();
146144
147145 $ this ->addExtraData ($ json , $ update , self ::MESSAGE_INFO );
Original file line number Diff line number Diff line change 310310 'maxitems ' => 1 ,
311311 ],
312312 ],
313- 'earlier_check_result ' => [
314- 'label ' => 'LLL:EXT:t3monitoring/Resources/Private/Language/locallang.xlf:tx_t3monitoring_domain_model_client.earlier_check_result ' ,
315- 'config ' => [
316- 'readOnly ' => true ,
317- 'type ' => 'select ' ,
318- 'renderType ' => 'selectSingle ' ,
319- 'foreign_table ' => 'tx_t3monitoring_domain_model_checkresult ' ,
320- 'minitems ' => 0 ,
321- 'maxitems ' => 1 ,
322- ],
323- ],
324313 ],
325314];
You can’t perform that action at this time.
0 commit comments