17 lines
270 B
PHP
17 lines
270 B
PHP
<?php
|
|
|
|
namespace Egulias\EmailValidator\Result\Reason;
|
|
|
|
class UnclosedComment implements Reason
|
|
{
|
|
public function code() : int
|
|
{
|
|
return 146;
|
|
}
|
|
|
|
public function description(): string
|
|
{
|
|
return 'No closing comment token found';
|
|
}
|
|
}
|