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 Tests\Feature; use App\Models\Album; use App\Models\Artist; use App\Mode..
Decoded Output download
<?php
namespace Tests\Feature;
use App\Models\Album;
use App\Models\Artist;
use App\Models\Song;
class ExcerptSearchTest extends TestCase
{
public function testSearch(): void
{
Song::factory()->create(['title' => 'A Foo Song']);
Song::factory(6)->create();
Artist::factory()->create(['name' => 'Foo Fighters']);
Artist::factory(3)->create();
Album::factory()->create(['name' => 'Foo Number Five']);
Album::factory(4)->create();
$this->getAs('api/search?q=foo')
->assertJsonStructure([
'songs' => ['*' => SongTest::JSON_STRUCTURE],
'artists' => ['*' => ArtistTest::JSON_STRUCTURE],
'albums' => ['*' => AlbumTest::JSON_STRUCTURE],
]);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Tests\Feature;
use App\Models\Album;
use App\Models\Artist;
use App\Models\Song;
class ExcerptSearchTest extends TestCase
{
public function testSearch(): void
{
Song::factory()->create(['title' => 'A Foo Song']);
Song::factory(6)->create();
Artist::factory()->create(['name' => 'Foo Fighters']);
Artist::factory(3)->create();
Album::factory()->create(['name' => 'Foo Number Five']);
Album::factory(4)->create();
$this->getAs('api/search?q=foo')
->assertJsonStructure([
'songs' => ['*' => SongTest::JSON_STRUCTURE],
'artists' => ['*' => ArtistTest::JSON_STRUCTURE],
'albums' => ['*' => AlbumTest::JSON_STRUCTURE],
]);
}
}
Function Calls
None |
Stats
MD5 | bec5657cd16e1a3fa71176590673487a |
Eval Count | 0 |
Decode Time | 112 ms |