PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Database
/
Eloquent
/
Relations
<?php namespace Illuminate\Database\Eloquent\Relations; use Illuminate\Database\Eloquent\Collection; class MorphMany extends MorphOneOrMany { /** * Get the results of the relationship. * * @return mixed */ public function getResults() { return ! is_null($this->getParentKey()) ? $this->query->get() : $this->related->newCollection(); } /** * 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->related->newCollection()); } 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 $models, Collection $results, $relation) { return $this->matchMany($models, $results, $relation); } /** * Create a new instance of the related model. Allow mass-assignment. * * @param array $attributes * @return \Illuminate\Database\Eloquent\Model */ public function forceCreate(array $attributes = []) { $attributes[$this->getMorphType()] = $this->morphClass; return parent::forceCreate($attributes); } }
[-] MorphMany.php
[edit]
[-] HasOneOrMany.php
[edit]
[-] HasMany.php
[edit]
[-] BelongsToMany.php
[edit]
[-] Pivot.php
[edit]
[+]
..
[-] BelongsTo.php
[edit]
[-] HasOne.php
[edit]
[-] MorphTo.php
[edit]
[-] MorphOne.php
[edit]
[-] HasManyThrough.php
[edit]
[-] HasOneThrough.php
[edit]
[-] MorphToMany.php
[edit]
[-] Relation.php
[edit]
[+]
Concerns
[-] MorphPivot.php
[edit]
[-] MorphOneOrMany.php
[edit]