!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.21 GB of 57.97 GB (22.8%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Rule2Literals.php (2.58 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 Rule2Literals extends Rule
{
    protected 
$literal1;
    protected 
$literal2;

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

        if (
$literal1 $literal2) {
            
$this->literal1 $literal1;
            
$this->literal2 $literal2;
        } else {
            
$this->literal1 $literal2;
            
$this->literal2 $literal1;
        }
    }

    public function 
getLiterals()
    {
        return array(
$this->literal1$this->literal2);
    }

    public function 
getHash()
    {
        return 
$this->literal1.','.$this->literal2;
    }

    
/**
     * 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)
    {
        
// specialized fast-case
        
if ($rule instanceof self) {
            if (
$this->literal1 !== $rule->literal1) {
                return 
false;
            }

            if (
$this->literal2 !== $rule->literal2) {
                return 
false;
            }

            return 
true;
        }

        
$literals $rule->getLiterals();
        if (
!= \count($literals)) {
            return 
false;
        }

        if (
$this->literal1 !== $literals[0]) {
            return 
false;
        }

        if (
$this->literal2 !== $literals[1]) {
            return 
false;
        }

        return 
true;
    }

    public function 
isAssertion()
    {
        return 
false;
    }

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

        
$result .= $this->literal1 '|' $this->literal2 ')';

        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.0091 ]--