Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
riculum committed May 11, 2022
1 parent baa94f4 commit 26c3dce
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.idea/
vendor/
tests/
composer.lock
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\\": "./"
"Validation\\": "src/"
}
},
"require": {
Expand Down
6 changes: 3 additions & 3 deletions core/Validator.php → src/Validator.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
namespace Validation\core;
namespace Validation;

use Validation\Exceptions\InvalidValidationException;
use Validation\Interfaces\ValidatorInterface;
use Validation\exceptions\InvalidValidationException;
use Validation\interfaces\ValidatorInterface;

class Validator implements ValidatorInterface
{
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 26c3dce

Please sign in to comment.