Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
namespace App\Notifications\Auth; use Illuminate\Bus\Queueable; use Illuminate\Notificati..
Decoded Output download
<? namespace App\Notifications\Auth; use Illuminate\Bus\Queueable; use Illuminate\Notifications\Notification; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Notifications\Messages\MailMessage; class CustomerResetPasswordNotification extends Notification implements ShouldQueue { use Queueable; public $token; public function __construct($token) { $this->token = $token; } public function via($notifiable) { return ["mail"]; } public function toMail($notifiable) { return (new MailMessage())->from(get_sender_email(), get_sender_name())->subject(trans("notifications.customer_password_reset.subject"))->line(trans("notifications.customer_password_reset.message"))->action(trans("notifications.customer_password_reset.action.text"), url(config("app.url") . route("customer.password.reset", $this->token, false))); } public function toArray($notifiable) { return []; } }
?>
Did this file decode correctly?
Original Code
namespace App\Notifications\Auth; use Illuminate\Bus\Queueable; use Illuminate\Notifications\Notification; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Notifications\Messages\MailMessage; class CustomerResetPasswordNotification extends Notification implements ShouldQueue { use Queueable; public $token; public function __construct($token) { $this->token = $token; } public function via($notifiable) { return ["\x6d\x61\151\154"]; } public function toMail($notifiable) { return (new MailMessage())->from(get_sender_email(), get_sender_name())->subject(trans("\156\157\164\x69\x66\x69\143\x61\164\x69\157\156\163\x2e\x63\165\x73\164\x6f\155\145\162\x5f\160\x61\163\163\x77\x6f\162\144\137\162\x65\163\145\x74\56\x73\x75\x62\x6a\145\x63\x74"))->line(trans("\x6e\x6f\164\x69\x66\151\143\x61\164\x69\x6f\x6e\x73\56\x63\x75\x73\164\x6f\x6d\145\162\137\x70\141\163\x73\x77\157\162\144\x5f\162\x65\163\145\x74\56\x6d\x65\163\163\x61\147\x65"))->action(trans("\156\x6f\164\151\x66\151\x63\141\x74\151\157\x6e\163\x2e\143\165\163\x74\x6f\155\x65\162\x5f\160\141\163\x73\167\157\162\x64\137\162\x65\163\145\x74\56\141\x63\164\151\x6f\156\x2e\x74\x65\x78\x74"), url(config("\x61\x70\x70\56\165\162\x6c") . route("\x63\165\x73\x74\x6f\x6d\x65\x72\56\160\x61\163\163\167\157\x72\144\x2e\x72\145\163\145\164", $this->token, false))); } public function toArray($notifiable) { return []; } }
Function Calls
None |
Stats
MD5 | 099e272abfd8a8feae318448511bbef1 |
Eval Count | 0 |
Decode Time | 106 ms |