File: AnotherDummyReason.php

package info (click to toggle)
php-email-validator 4.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 760 kB
  • sloc: php: 3,534; makefile: 19; xml: 18
file content (17 lines) | stat: -rw-r--r-- 314 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
namespace Egulias\EmailValidator\Tests\EmailValidator\Dummy;

use Egulias\EmailValidator\Result\Reason\Reason;

class AnotherDummyReason implements Reason
{
    public function code() : int
    {
        return 1;
    }

    public function description() : string
    {
        return 'Dummy Reason';
    }
}