PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
sendgrid
/
php-http-client
/
test
/
unit
<?php namespace SendGrid\Test; use SendGrid\Client; class MockClient extends Client { protected $requestBody; protected $requestHeaders; protected $url; public function makeRequest($method, $url, $requestBody = null, $requestHeaders = null, $retryOnLimit = false) { $this->requestBody = $requestBody; $this->requestHeaders = $requestHeaders; $this->url = $url; return $this; } }
[+]
..
[-] MockClient.php
[edit]
[-] FilesExistTest.php
[edit]
[-] LicenceYearTest.php
[edit]
[-] ResponseTest.php
[edit]
[-] ClientTest.php
[edit]