-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5e9369a
commit 1114736
Showing
3 changed files
with
5 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
namespace Adrosoftware; | ||
namespace Adrosoftware\Aws3; | ||
|
||
class Aws3 | ||
{ | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,17 +7,16 @@ | |
* @author Adro Rocker <[email protected]> | ||
*/ | ||
|
||
namespace Adrosoftware; | ||
|
||
use Adrosoftware\Aws3; | ||
namespace Adrosoftware\Aws3\Tests; | ||
|
||
use Adrosoftware\Aws3\Aws3; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
class Aws3Test extends TestCase | ||
{ | ||
public function testConstructor() | ||
{ | ||
$s3 = new Aws3(); | ||
$this->assertInstanceOf('Adrosoftware\Aws3', $s3); | ||
$this->assertInstanceOf('Adrosoftware\Aws3\Aws3', $s3); | ||
} | ||
} |