webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Database
/
Eloquent
/
Casts
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
ArrayObject.php
0.889KB
edt
ren
AsArrayObject.php
1.266KB
edt
ren
AsCollection.php
1.515KB
edt
ren
AsEncryptedArrayObject.php
1.391KB
edt
ren
AsEncryptedCollection.php
1.642KB
edt
ren
AsEnumArrayObject.php
2.601KB
edt
ren
AsEnumCollection.php
2.543KB
edt
ren
AsStringable.php
0.929KB
edt
ren
Attribute.php
1.926KB
edt
ren
Json.php
1.129KB
edt
ren
<?php namespace Illuminate\Database\Eloquent\Casts; class Json { /** * The custom JSON encoder. * * @var callable|null */ protected static $encoder; /** * The custom JSON decode. * * @var callable|null */ protected static $decoder; /** * Encode the given value. */ public static function encode(mixed $value): mixed { return isset(static::$encoder) ? (static::$encoder)($value) : json_encode($value); } /** * Decode the given value. */ public static function decode(mixed $value, ?bool $associative = true): mixed { return isset(static::$decoder) ? (static::$decoder)($value, $associative) : json_decode($value, $associative); } /** * Encode all values using the given callable. */ public static function encodeUsing(?callable $encoder): void { static::$encoder = $encoder; } /** * Decode all values using the given callable. */ public static function decodeUsing(?callable $decoder): void { static::$decoder = $decoder; } }
<=Back
Liking