Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace Illuminate\Tests\Integration\Http\Fixtures; use Illuminate\Http\Resource..
Decoded Output download
<?php
namespace Illuminate\Tests\Integration\Http\Fixtures;
use Illuminate\Http\Resources\Json\JsonResource;
class PostResourceWithOptionalHasAttributes extends JsonResource
{
public function toArray($request)
{
return [
'id' => $this->id,
'first' => $this->whenHas('is_published'),
'second' => $this->whenHas('is_published', 'override value'),
'third' => $this->whenHas('is_published', function () {
return 'override value';
}),
'fourth' => $this->whenHas('is_published', $this->is_published, 'default'),
'fifth' => $this->whenHas('is_published', $this->is_published, function () {
return 'default';
}),
];
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Illuminate\Tests\Integration\Http\Fixtures;
use Illuminate\Http\Resources\Json\JsonResource;
class PostResourceWithOptionalHasAttributes extends JsonResource
{
public function toArray($request)
{
return [
'id' => $this->id,
'first' => $this->whenHas('is_published'),
'second' => $this->whenHas('is_published', 'override value'),
'third' => $this->whenHas('is_published', function () {
return 'override value';
}),
'fourth' => $this->whenHas('is_published', $this->is_published, 'default'),
'fifth' => $this->whenHas('is_published', $this->is_published, function () {
return 'default';
}),
];
}
}
Function Calls
None |
Stats
MD5 | 1139308233b1da622b0e30be133c9c4b |
Eval Count | 0 |
Decode Time | 93 ms |