PHP 8.3.31
Preview: ExcludeIf.php Size: 1.06 KB
/home/getspomw/royalsquad.us/vendor/laravel/framework/src/Illuminate/Validation/Rules/ExcludeIf.php

<?php

namespace Illuminate\Validation\Rules;

use Closure;
use InvalidArgumentException;
use Stringable;

class ExcludeIf implements Stringable
{
    /**
     * The condition that validates the attribute.
     *
     * @var \Closure|bool
     */
    public $condition;

    /**
     * Create a new exclude validation rule based on a condition.
     *
     * @param  \Closure|bool  $condition
     * @return void
     *
     * @throws \InvalidArgumentException
     */
    public function __construct($condition)
    {
        if ($condition instanceof Closure || is_bool($condition)) {
            $this->condition = $condition;
        } else {
            throw new InvalidArgumentException('The provided condition must be a callable or boolean.');
        }
    }

    /**
     * Convert the rule to a validation string.
     *
     * @return string
     */
    public function __toString()
    {
        if (is_callable($this->condition)) {
            return call_user_func($this->condition) ? 'exclude' : '';
        }

        return $this->condition ? 'exclude' : '';
    }
}

Directory Contents

Dirs: 0 × Files: 17

Name Size Perms Modified Actions
986 B lrw-rw-rw- 2025-09-17 06:52:58
Edit Download
1.80 KB lrw-rw-rw- 2025-09-17 06:52:58
Edit Download
5.37 KB lrw-rw-rw- 2025-09-17 06:52:58
Edit Download
3.24 KB lrw-rw-rw- 2025-09-17 06:52:58
Edit Download
3.17 KB lrw-rw-rw- 2025-09-17 06:52:58
Edit Download
6.59 KB lrw-rw-rw- 2025-09-17 06:52:58
Edit Download
3.43 KB lrw-rw-rw- 2025-09-17 06:52:58
Edit Download
1.06 KB lrw-rw-rw- 2025-09-17 06:52:58
Edit Download
476 B lrw-rw-rw- 2025-09-17 06:52:58
Edit Download
9.25 KB lrw-rw-rw- 2025-09-17 06:52:58
Edit Download
508 B lrw-rw-rw- 2025-09-17 06:52:58
Edit Download
1.20 KB lrw-rw-rw- 2025-09-17 06:52:58
Edit Download
1.14 KB lrw-rw-rw- 2025-09-17 06:52:58
Edit Download
8.59 KB lrw-rw-rw- 2025-09-17 06:52:58
Edit Download
1.07 KB lrw-rw-rw- 2025-09-17 06:52:58
Edit Download
999 B lrw-rw-rw- 2025-09-17 06:52:58
Edit Download
1.62 KB lrw-rw-rw- 2025-09-17 06:52:58
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).