CodeExplorer AttachmentsTestDomainObject example
public function domainObject() { return new TestDomainObject();
} public function domainObjectEarly() { $render_array =
$this->
earlyRenderContent();
$this->renderer->
render($render_array);
return new TestDomainObject();
} public function domainObjectWithAttachments() { return new AttachmentsTestDomainObject();
} public function domainObjectWithAttachmentsEarly() { $render_array =
$this->
earlyRenderContent();
$this->renderer->
render($render_array);
return new AttachmentsTestDomainObject();
} public function cacheableDomainObject() { return new CacheableTestDomainObject();
}