Skip to content
Snippets Groups Projects

Devel

Merged Piotr Potrebka requested to merge devel into main
1 file
+ 1
12
Compare changes
  • Side-by-side
  • Inline
@@ -271,18 +271,7 @@ abstract class EmailAbstract implements EmailInterface {
* @throws Exception
*/
public function get_content(): string {
if ( ! $this->content ) {
throw new Exception( 'Empty email content' );
}
return '';
}
/**
* @return mixed
*/
public function get_object() {
return '';
return $this->content;
}
Loading