Skip to content

Commit 26c3dce

Browse files
committed
Bug fixes
1 parent baa94f4 commit 26c3dce

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.idea/
22
vendor/
3+
tests/
34
composer.lock

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\\": "./"
14+
"Validation\\": "src/"
1515
}
1616
},
1717
"require": {

core/Validator.php renamed to 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\core;
2+
namespace Validation;
33

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

77
class Validator implements ValidatorInterface
88
{
File renamed without changes.

0 commit comments

Comments
 (0)