mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 15:25:45 +01:00
Most changes was made by php-cs-fixer. Also removes unused `RecursiveTreeIterator` class.
11 lines
215 B
PHP
11 lines
215 B
PHP
<?php
|
|
namespace Respect\Validation\Rules;
|
|
|
|
class Vowels extends Vowel
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
trigger_error("Use vowel instead.", E_USER_DEPRECATED);
|
|
}
|
|
}
|