# wpide/3.5.9/vendor/rakit/validation/src/Rules/Interfaces/ModifyValue.php

WPIDE – File Manager &amp; Code Editor, version 3.5.9. 16 lines.

- Page: https://pluginprobe.com/plugins/wpide/3.5.9/code/vendor/rakit/validation/src/Rules/Interfaces/ModifyValue.php
- Raw: https://pluginprobe.com/plugins/wpide/3.5.9/raw/vendor/rakit/validation/src/Rules/Interfaces/ModifyValue.php
- Modified: 2022-07-30T20:33:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wpide/3.5.9/code/vendor/rakit/validation/src/Rules/Interfaces/ModifyValue.php#L10-L20`.

```php
<?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);
}

```
