1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-18 12:52:42 +01:00

Remove bogus '$this->resource' from SES error handling pathway

Summary: Ref T10728. This property does not exist and is never referenced. The `'resource'` key is also never referenced, so I believe this can be safely removed.

Test Plan: Will make @amckinley do my job for me.

Reviewers: chad

Reviewed By: chad

Subscribers: amckinley

Maniphest Tasks: T10728

Differential Revision: https://secure.phabricator.com/D15624
This commit is contained in:
epriestley 2016-04-05 13:17:17 -07:00
parent 00604dff45
commit c29bbbab19

View file

@ -530,7 +530,6 @@ final class SimpleEmailServiceRequest
'curl' => true, 'curl' => true,
'code' => curl_errno($curl), 'code' => curl_errno($curl),
'message' => curl_error($curl), 'message' => curl_error($curl),
'resource' => $this->resource
); );
} }