!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_led/php/vendor/justinrainbow/json-schema/src/JsonSchema/Constraints/   drwxrwxr-x
Free 15.68 GB of 61.93 GB (25.32%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Factory.php (2.82 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/*
 * This file is part of the JsonSchema package.
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace JsonSchema\Constraints;

use 
JsonSchema\Exception\InvalidArgumentException;
use 
JsonSchema\Uri\UriRetriever;
use 
JsonSchema\Validator;

/**
 * Factory for centralize constraint initialization.
 */
class Factory
{
    
/**
     * @var UriRetriever $uriRetriever
     */
    
protected $uriRetriever;

    
/**
     * @var array $constraintMap
     */
    
protected $constraintMap = array(
        
'array' => 'JsonSchema\Constraints\CollectionConstraint',
        
'collection' => 'JsonSchema\Constraints\CollectionConstraint',
        
'object' => 'JsonSchema\Constraints\ObjectConstraint',
        
'type' => 'JsonSchema\Constraints\TypeConstraint',
        
'undefined' => 'JsonSchema\Constraints\UndefinedConstraint',
        
'string' => 'JsonSchema\Constraints\StringConstraint',
        
'number' => 'JsonSchema\Constraints\NumberConstraint',
        
'enum' => 'JsonSchema\Constraints\EnumConstraint',
        
'format' => 'JsonSchema\Constraints\FormatConstraint',
        
'schema' => 'JsonSchema\Constraints\SchemaConstraint',
        
'validator' => 'JsonSchema\Validator',
    );

    
/**
     * @param UriRetriever $uriRetriever
     */
    
public function __construct(UriRetriever $uriRetriever null)
    {
        if (!
$uriRetriever) {
            
$uriRetriever = new UriRetriever();
        }

        
$this->uriRetriever $uriRetriever;
    }

    
/**
     * @return UriRetriever
     */
    
public function getUriRetriever()
    {
        return 
$this->uriRetriever;
    }

    
/**
     * @param string $name
     * @param string $class
     * @return Factory
     */
    
public function setConstraintClass($name$class)
    {
      
// Ensure class exists
      
if (!class_exists($class)) {
        throw new 
InvalidArgumentException('Unknown constraint ' $name);
      }
      
// Ensure class is appropriate
      
if (!in_array('JsonSchema\Constraints\ConstraintInterface'class_implements($class))) {
        throw new 
InvalidArgumentException('Invalid class ' $name);
      }
      
$this->constraintMap[$name] = $class;
      return 
$this;
    }

    
/**
     * Create a constraint instance for the given constraint name.
     *
     * @param string $constraintName
     * @return ConstraintInterface|ObjectConstraint
     * @throws InvalidArgumentException if is not possible create the constraint instance.
     */
    
public function createInstanceFor($constraintName)
    {
        if (
array_key_exists($constraintName$this->constraintMap)) {
          return new 
$this->constraintMap[$constraintName](Constraint::CHECK_MODE_NORMAL$this->uriRetriever$this);
        }
        throw new 
InvalidArgumentException('Unknown constraint ' $constraintName);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.2777 ]--