/**
* Value to return from mocked send().
*
* @var bool
*/
public $returnValue = true;
public function send($autoClear = true
) { if ($this->returnValue
) { $this->
setArchiveValues();
if ($autoClear) { $this->
clear();
} Events::
trigger('email',
$this->archive
);
} return $this->returnValue;
}}