Questions tagged [aws-php-sdk]

PHP SDK for Amazon Web Services

What is the best way to simulate an annotated method from AWS in PHPUnit?

Currently, I am in the process of writing a unit test to verify if the method publish() has been called at least once. Here is a snippet from my test class: <?php namespace App\Tests\Unit; use Aws\Sns\SnsClient; use Exception; use ...