This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Automating code the easy way | |
3rd party services and webhooks to create reliable repeatable and dependable QA process | |
Ensure craftmasnship - complexity, deprecated, messy | |
Prevent Errors - Regression, syntax | |
Secutiy Vulns | |
Excpected outcomes | |
Product quality over time | |
Enhance product Value |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use GuzzleHttp\Psr7\Response; | |
$string = json_encode(['data' => 'test']); | |
$response = new Response(200, ['Content-Type' => 'application/json'], $string); | |
use Guzzle\Http\Message\Response; |