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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/uploads/script/vendor/composer/composer/src/Composer/DependencyResolver/   drwxr-xr-x
Free 13.18 GB of 57.97 GB (22.73%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

/*
 * This file is part of Composer.
 *
 * (c) Nils Adermann <naderman@naderman.de>
 *     Jordi Boggiano <j.boggiano@seld.be>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Composer\DependencyResolver;

use 
Composer\Package\PackageInterface;
use 
Composer\Package\Link;

/**
 * @author Nils Adermann <naderman@naderman.de>
 */
class GenericRule extends Rule
{
    protected 
$literals;

    
/**
     * @param array                          $literals
     * @param int|null                       $reason     A RULE_* constant describing the reason for generating this rule
     * @param Link|PackageInterface|int|null $reasonData
     */
    
public function __construct(array $literals$reason$reasonData)
    {
        
parent::__construct($reason$reasonData);

        
// sort all packages ascending by id
        
sort($literals);

        
$this->literals $literals;
    }

    public function 
getLiterals()
    {
        return 
$this->literals;
    }

    public function 
getHash()
    {
        
$data unpack('ihash'md5(implode(','$this->literals), true));

        return 
$data['hash'];
    }

    
/**
     * Checks if this rule is equal to another one
     *
     * Ignores whether either of the rules is disabled.
     *
     * @param  Rule $rule The rule to check against
     * @return bool Whether the rules are equal
     */
    
public function equals(Rule $rule)
    {
        return 
$this->literals === $rule->getLiterals();
    }

    public function 
isAssertion()
    {
        return 
=== \count($this->literals);
    }

    
/**
     * Formats a rule as a string of the format (Literal1|Literal2|...)
     *
     * @return string
     */
    
public function __toString()
    {
        
$result $this->isDisabled() ? 'disabled(' '(';

        foreach (
$this->literals as $i => $literal) {
            if (
$i != 0) {
                
$result .= '|';
            }
            
$result .= $literal;
        }

        
$result .= ')';

        return 
$result;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

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