Move files in typical src and tests folder (#242)

* Move files in typical src and tests folder

* Fix psalm error
This commit is contained in:
Simon Schaufelberger
2020-06-16 22:11:17 +02:00
committed by GitHub
parent 2f38a470f9
commit cfa3d44471
78 changed files with 23 additions and 23 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
namespace Egulias\EmailValidator\Warning;
class IPV6MaxGroups extends Warning
{
const CODE = 75;
public function __construct()
{
$this->message = 'Reached the maximum number of IPV6 groups allowed';
$this->rfcNumber = 5321;
}
}