Changeset 52009 for trunk/tests/phpunit/includes/mock-mailer.php
- Timestamp:
- 11/04/2021 01:15:33 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/mock-mailer.php
r50265 r52009 6 6 public $mock_sent = array(); 7 7 8 function preSend() {8 public function preSend() { 9 9 $this->Encoding = '8bit'; 10 10 return parent::preSend(); … … 14 14 * Override postSend() so mail isn't actually sent. 15 15 */ 16 function postSend() {16 public function postSend() { 17 17 $this->mock_sent[] = array( 18 18 'to' => $this->to,
Note: See TracChangeset
for help on using the changeset viewer.