PATH:
home
/
lab2454c
/
healthvalidate.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Http
/
Resources
<?php namespace Illuminate\Http\Resources; use Illuminate\Support\Collection; use JsonSerializable; class MergeValue { /** * The data to be merged. * * @var array */ public $data; /** * Create a new merge value instance. * * @param \Illuminate\Support\Collection|\JsonSerializable|array $data * @return void */ public function __construct($data) { if ($data instanceof Collection) { $this->data = $data->all(); } elseif ($data instanceof JsonSerializable) { $this->data = $data->jsonSerialize(); } else { $this->data = $data; } } }
[-] MergeValue.php
[edit]
[-] PotentiallyMissing.php
[edit]
[+]
..
[-] MissingValue.php
[edit]
[-] DelegatesToResource.php
[edit]
[+]
Json
[-] CollectsResources.php
[edit]
[-] ConditionallyLoadsAttributes.php
[edit]