stream test

This commit is contained in:
Yurii
2026-03-11 10:04:16 +02:00
parent 159284f5ee
commit fe505aea1e
2 changed files with 119 additions and 0 deletions
+10
View File
@@ -351,6 +351,16 @@ class Note extends Entity
return $this;
}
/**
* @since 9.4.0
*/
public function setIsInternal(bool $isInternal): self
{
$this->set('isInternal', $isInternal);
return $this;
}
public function getParent(): ?OrmEntity
{
return $this->relations->getOne(Field::PARENT);