Skip to content

Commit 5738d87

Browse files
committed
Bug fixes
1 parent 26c3dce commit 5738d87

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"autoload": {
1313
"psr-4": {
14-
"Validation\\": "src/"
14+
"Riculum\\Validation\\": "src/"
1515
}
1616
},
1717
"require": {

src/Validator.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
2-
namespace Validation;
2+
namespace Riculum\Validation;
33

4-
use Validation\exceptions\InvalidValidationException;
5-
use Validation\interfaces\ValidatorInterface;
4+
use Riculum\Validation\exceptions\InvalidValidationException;
5+
use Riculum\Validation\interfaces\ValidatorInterface;
66

77
class Validator implements ValidatorInterface
88
{
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?php
2-
namespace Validation\exceptions;
2+
namespace Riculum\Validation\exceptions;
33

44
class InvalidValidationException extends \Exception {}

src/interfaces/ValidatorInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Validation\interfaces;
2+
namespace Riculum\Validation\interfaces;
33

44
interface ValidatorInterface
55
{

0 commit comments

Comments
 (0)