Вход Регистрация
Файл: vendor/laravel/framework/src/Illuminate/Database/Eloquent/Relations/MorphOneOrMany.php
Строк: 139
<?php

namespace IlluminateDatabaseEloquentRelations;

use 
IlluminateDatabaseEloquentBuilder;
use 
IlluminateDatabaseEloquentModel;

abstract class 
MorphOneOrMany extends HasOneOrMany
{
    
/**
     * The foreign key type for the relationship.
     *
     * @var string
     */
    
protected $morphType;

    
/**
     * The class name of the parent model.
     *
     * @var string
     */
    
protected $morphClass;

    
/**
     * Create a new morph one or many relationship instance.
     *
     * @param  IlluminateDatabaseEloquentBuilder  $query
     * @param  IlluminateDatabaseEloquentModel  $parent
     * @param  string  $type
     * @param  string  $id
     * @param  string  $localKey
     * @return void
     */
    
public function __construct(Builder $queryModel $parent$type$id$localKey)
    {
        
$this->morphType $type;

        
$this->morphClass $parent->getMorphClass();

        
parent::__construct($query$parent$id$localKey);
    }

    
/**
     * Set the base constraints on the relation query.
     *
     * @return void
     */
    
public function addConstraints()
    {
        if (static::
$constraints) {
            
$this->getRelationQuery()->where($this->morphType$this->morphClass);

            
parent::addConstraints();
        }
    }

    
/**
     * Set the constraints for an eager load of the relation.
     *
     * @param  array  $models
     * @return void
     */
    
public function addEagerConstraints(array $models)
    {
        
parent::addEagerConstraints($models);

        
$this->getRelationQuery()->where($this->morphType$this->morphClass);
    }

    
/**
     * Create a new instance of the related model. Allow mass-assignment.
     *
     * @param  array  $attributes
     * @return IlluminateDatabaseEloquentModel
     */
    
public function forceCreate(array $attributes = [])
    {
        
$attributes[$this->getForeignKeyName()] = $this->getParentKey();
        
$attributes[$this->getMorphType()] = $this->morphClass;

        return 
$this->related->forceCreate($attributes);
    }

    
/**
     * Set the foreign ID and type for creating a related model.
     *
     * @param  IlluminateDatabaseEloquentModel  $model
     * @return void
     */
    
protected function setForeignAttributesForCreate(Model $model)
    {
        
$model->{$this->getForeignKeyName()} = $this->getParentKey();

        
$model->{$this->getMorphType()} = $this->morphClass;
    }

    
/**
     * Get the relationship query.
     *
     * @param  IlluminateDatabaseEloquentBuilder  $query
     * @param  IlluminateDatabaseEloquentBuilder  $parentQuery
     * @param  array|mixed  $columns
     * @return IlluminateDatabaseEloquentBuilder
     */
    
public function getRelationExistenceQuery(Builder $queryBuilder $parentQuery$columns = ['*'])
    {
        return 
parent::getRelationExistenceQuery($query$parentQuery$columns)->where(
            
$query->qualifyColumn($this->getMorphType()), $this->morphClass
        
);
    }

    
/**
     * Get the foreign key "type" name.
     *
     * @return string
     */
    
public function getQualifiedMorphType()
    {
        return 
$this->morphType;
    }

    
/**
     * Get the plain morph type name without the table.
     *
     * @return string
     */
    
public function getMorphType()
    {
        return 
last(explode('.'$this->morphType));
    }

    
/**
     * Get the class name of the parent model.
     *
     * @return string
     */
    
public function getMorphClass()
    {
        return 
$this->morphClass;
    }
}
Онлайн: 0
Реклама