Skip to content

Commit

Permalink
Autoload
Browse files Browse the repository at this point in the history
  • Loading branch information
lennyrouanet committed Jul 13, 2020
1 parent fe13da8 commit 16123f5
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ PHP >= 7.4

## Install

`composer require lennyrouanet/email-validity-checker`
`composer require phant/email-validity-checker`

## Use

```php
use LNY\EmailValidityChecker\EmailValidityChecker;
use LNY\EmailValidityChecker\Exception\{
use Phant\EmailValidityChecker\EmailValidityChecker;
use Phant\EmailValidityChecker\Exception\{
EmailFormatIsNotValid,
EmailDomainFormatIsNotValid,
EmailDomainIsTrashMailBoxService,
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"autoload": {
"psr-4": {
"LNY\\EmailValidityChecker\\": "src/EmailValidityChecker/"
"Phant\\EmailValidityChecker\\": "src/EmailValidityChecker/"
}
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace LNY\EmailValidityChecker\EmailServiceProviderDomain;
namespace Phant\EmailValidityChecker\EmailServiceProviderDomain;

final class EmailServiceProviderDomain
{
Expand Down
6 changes: 3 additions & 3 deletions src/EmailValidityChecker/EmailValidityChecker.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php
declare(strict_types=1);

namespace LNY\EmailValidityChecker;
namespace Phant\EmailValidityChecker;

use LNY\EmailValidityChecker\TrashMailBoxServiceDomain\{
use Phant\EmailValidityChecker\TrashMailBoxServiceDomain\{
TrashMailBoxServiceDomain,
};
use LNY\EmailValidityChecker\Exception\{
use Phant\EmailValidityChecker\Exception\{
EmailFormatIsNotValid,
EmailDomainFormatIsNotValid,
EmailDomainIsTrashMailBoxService,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace LNY\EmailValidityChecker\Exception;
namespace Phant\EmailValidityChecker\Exception;

class EmailDomainFormatIsNotValid extends \Exception
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace LNY\EmailValidityChecker\Exception;
namespace Phant\EmailValidityChecker\Exception;

class EmailDomainIsTrashMailBoxService extends \Exception
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace LNY\EmailValidityChecker\Exception;
namespace Phant\EmailValidityChecker\Exception;

class EmailDomainWithoutMxServer extends \Exception
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace LNY\EmailValidityChecker\Exception;
namespace Phant\EmailValidityChecker\Exception;

class EmailFormatIsNotValid extends \Exception
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace LNY\EmailValidityChecker\TrashMailBoxServiceDomain;
namespace Phant\EmailValidityChecker\TrashMailBoxServiceDomain;

final class TrashMailBoxServiceDomain
{
Expand Down

0 comments on commit 16123f5

Please # to comment.