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 declare(strict_types=1); namespace QueryBuilder; use Illuminate\Support\Facades\D..
Decoded Output download
<?php
declare(strict_types=1);
namespace QueryBuilder;
use Illuminate\Support\Facades\DB;
use function PHPStan\TestingssertType;
function test(): void
{
$record = DB::table('user')->pluck('email', 'id');
assertType('Illuminate\Support\Collection<(int|string), mixed>', $record);
assertType('Illuminate\Support\LazyCollection<int, mixed>', DB::table('user')->cursor());
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
namespace QueryBuilder;
use Illuminate\Support\Facades\DB;
use function PHPStan\Testing\assertType;
function test(): void
{
$record = DB::table('user')->pluck('email', 'id');
assertType('Illuminate\Support\Collection<(int|string), mixed>', $record);
assertType('Illuminate\Support\LazyCollection<int, mixed>', DB::table('user')->cursor());
}
Function Calls
None |
Stats
MD5 | f8d0964ce1594430b605e1fa51e182b7 |
Eval Count | 0 |
Decode Time | 98 ms |