Skip to content

Commit f291e93

Browse files
author
Jake Ryan Smith
committed
Fix namespace.
1 parent 667dbbe commit f291e93

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

composer.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@
1616
"role": "Developer"
1717
}
1818
],
19+
"autoload": {
20+
"psr-4": {
21+
"JakeRyanSmith\\ValidateStringOfEmails\\": "src"
22+
}
23+
},
1924
"require": {
2025
"php": "^7.2",
2126
"illuminate/support": "^5.5"

src/StringOfEmails.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace App\Rules;
3+
namespace JakeRyanSmith\ValidateStringOfEmails;
44

55
use Illuminate\Support\Facades\Validator;
66
use Illuminate\Contracts\Validation\Rule;

src/ValidationRulesServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace JakeRyanSmith\ValidationRules;
3+
namespace JakeRyanSmith\ValidateStringOfEmails;
44

55
use Illuminate\Support\ServiceProvider;
66

0 commit comments

Comments
 (0)