File "ModifyValue.php"

Full Path: /home/attunedd/public_html/wp-content/plugins/wpide/vendor/rakit/validation/src/Rules/Interfaces/ModifyValue.php
File size: 281 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Rakit\Validation\Rules\Interfaces;

interface ModifyValue
{
    /**
     * Modify given value
     * so in current and next rules returned value will be used
     *
     * @param mixed $value
     * @return mixed
     */
    public function modifyValue($value);
}