Closed tonydspaniard closed 11 years ago
From now on, you can pass custom configurations like this:
$s3 = new A2S3(array( 'key' => '{YOUR-AWS-KEY}', 'secret' => '{YOUR-AWS-SECRET}', 'region' => 'us-east-1' )); try { return $s3->getClient()->deleteObject(array( 'Bucket' => $bucket, 'Key' => $image->filename )); } catch (Aws\S3\Exception\S3Exception $e) { throw $e; return false; }
Fixes #23
From now on, you can pass custom configurations like this:
Fixes #23