Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
srmklive
/
paypal
/
src
/
Services
Location:
/home/zoteqbgb/public_html/vendor/srmklive/paypal/src/Services
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: Str.php
<?php namespace Srmklive\PayPal\Services; use GuzzleHttp\Utils; class Str extends \Illuminate\Support\Str { /** * Determine if a given value is valid JSON. * * @param mixed $value * * @return bool */ public static function isJson($value): bool { if (!is_string($value)) { return false; } if (function_exists('json_validate')) { return json_validate($value, 512); } try { Utils::jsonDecode($value, true, 512, 4194304); } catch (\JsonException $jsonException) { return false; } return true; } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
PayPal.php
1,596 bytes
0644
2025-02-26 02:38
âï¸
ðï¸
Rename
Str.php
657 bytes
0644
2025-02-26 02:38
âï¸
ðï¸
Rename
VerifyDocuments.php
1,687 bytes
0644
2025-02-26 02:38
âï¸
ðï¸
Rename
Chang
Apply