We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31fa0f3 commit 7827432Copy full SHA for 7827432
Classes/Domain/Repository/AnswerRepository.php
@@ -10,15 +10,14 @@
10
*/
11
class AnswerRepository extends AbstractRepository
12
{
13
-
14
/**
15
* Find single Answer by field uid and mail uid
16
*
17
* @param int $fieldUid
18
* @param int $mailUid
19
- * @return Answer
+ * @return Answer|null
20
21
- public function findByFieldAndMail($fieldUid, $mailUid): Answer
+ public function findByFieldAndMail($fieldUid, $mailUid): ?Answer
22
23
$query = $this->createQuery();
24
$query->getQuerySettings()->setRespectStoragePage(false);
0 commit comments