Skip to content

Commit 45ed879

Browse files
committed
Merge pull request #3 from phillipsdata/update-namespace
Update namespace
2 parents d161244 + b62f13f commit 45ed879

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
vendor/
22
composer.lock
33
phpunit.xml
4-
.DS_Store
4+
.DS_Store

composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
"satooshi/php-coveralls": "dev-master"
2020
},
2121
"autoload": {
22-
"psr-4": {"minphp\\Input\\": "src"}
22+
"psr-4": {"Minphp\\Input\\": "src"}
23+
},
24+
"autoload-dev": {
25+
"psr-4": {"Minphp\\Input\\Tests\\": "tests"}
2326
}
2427
}

src/Input.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
2-
namespace minphp\Input;
2+
namespace Minphp\Input;
33

4-
use \Exception;
4+
use Exception;
55

66
/**
77
* Supplies methods useful in verifying and formatting input data. Provides a

tests/InputTest.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
<?php
2-
namespace minphp\Input;
2+
namespace Minphp\Input\Tests;
33

4-
use \PHPUnit_Framework_TestCase;
4+
use PHPUnit_Framework_TestCase;
5+
use Minphp\Input\Input;
56

67
/**
7-
* @coversDefaultClass \minphp\Input\Input
8+
* @coversDefaultClass \Minphp\Input\Input
89
*/
910
class InputTest extends PHPUnit_Framework_TestCase
1011
{

0 commit comments

Comments
 (0)