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 Webkul\Notification\Listeners; use Webkul\Notification\Events\CreateOrde..
Decoded Output download
<?php
namespace Webkul\Notification\Listeners;
use Webkul\Notification\Events\CreateOrderNotification;
use Webkul\Notification\Events\UpdateOrderNotification;
use Webkul\Notification\Repositories\NotificationRepository;
class Order
{
/**
* Create a new listener instance.
*
* @return void
*/
public function __construct(protected NotificationRepository $notificationRepository)
{
}
/**
* Create a new resource.
*
* @return void
*/
public function createOrder($order)
{
$this->notificationRepository->create(['type' => 'order', 'order_id' => $order->id]);
event(new CreateOrderNotification);
}
/**
* Fire an Event when the order status is updated.
*
* @return void
*/
public function updateOrder($order)
{
event(new UpdateOrderNotification([
'id' => $order->id,
'status' => $order->status,
]));
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Webkul\Notification\Listeners;
use Webkul\Notification\Events\CreateOrderNotification;
use Webkul\Notification\Events\UpdateOrderNotification;
use Webkul\Notification\Repositories\NotificationRepository;
class Order
{
/**
* Create a new listener instance.
*
* @return void
*/
public function __construct(protected NotificationRepository $notificationRepository)
{
}
/**
* Create a new resource.
*
* @return void
*/
public function createOrder($order)
{
$this->notificationRepository->create(['type' => 'order', 'order_id' => $order->id]);
event(new CreateOrderNotification);
}
/**
* Fire an Event when the order status is updated.
*
* @return void
*/
public function updateOrder($order)
{
event(new UpdateOrderNotification([
'id' => $order->id,
'status' => $order->status,
]));
}
}
Function Calls
None |
Stats
MD5 | a755ebfbeda842b3a558a91eb28f1dfd |
Eval Count | 0 |
Decode Time | 139 ms |