Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
riculum committed May 13, 2022
1 parent 26c3dce commit 5738d87
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"autoload": {
"psr-4": {
"Validation\\": "src/"
"Riculum\\Validation\\": "src/"
}
},
"require": {
Expand Down
6 changes: 3 additions & 3 deletions src/Validator.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
namespace Validation;
namespace Riculum\Validation;

use Validation\exceptions\InvalidValidationException;
use Validation\interfaces\ValidatorInterface;
use Riculum\Validation\exceptions\InvalidValidationException;
use Riculum\Validation\interfaces\ValidatorInterface;

class Validator implements ValidatorInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/exceptions/InvalidValidationException.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php
namespace Validation\exceptions;
namespace Riculum\Validation\exceptions;

class InvalidValidationException extends \Exception {}
2 changes: 1 addition & 1 deletion src/interfaces/ValidatorInterface.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
namespace Validation\interfaces;
namespace Riculum\Validation\interfaces;

interface ValidatorInterface
{
Expand Down

0 comments on commit 5738d87

Please sign in to comment.