Skip to content

Commit

Permalink
Merge pull request #28 from bakura10/fixes-v3
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
jeremeamia committed Jun 22, 2015
2 parents 76327d4 + 2da5cfd commit 264e911
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Module.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Aws;
namespace AwsModule;

use Zend\ModuleManager\Feature\ConfigProviderInterface;

Expand All @@ -9,7 +9,7 @@
*/
class Module implements ConfigProviderInterface
{
const VERSION = '1.2.0';
const VERSION = '2.0.0';

/**
* {@inheritdoc}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ The default bucket can be set globally by using the `setDefaultBucket` method:

```php
<?php
$this->s3Link->setDefaultBucket('my-bucket');
$this->plugin('s3Link')->setDefaultBucket('my-bucket');
echo $this->s3Link('my-object');
```

Expand All @@ -137,7 +137,7 @@ The default domain can be set globally by using the `setDefaultDomain` method:

```php
<?php
$this->cloudFrontLink->setDefaultDomain('my-domain');
$this->plugin('cloudFrontLink')->setDefaultDomain('my-domain');
echo $this->cloudFrontLink('my-object');
```

Expand Down
2 changes: 1 addition & 1 deletion config/aws.local.php.dist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ return [
// 'credentials' => [
// 'key' => 'change_me',
// 'secret' => 'change_me'
// ]
// ],
// 'region' => 'change_me',
// 'version' => 'latest',
// 'DynamoDb' => [
Expand Down

0 comments on commit 264e911

Please sign in to comment.