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 Livewire\Features\SupportEvents; use function Livewire\store; trait Han..

Decoded Output download

<?php

namespace Livewire\Features\SupportEvents;

use function Livewire\store;

trait HandlesEvents
{
    protected $listeners = [];

    protected function getListeners() {
        return $this->listeners;
    }

    public function dispatch($event, ...$params)
    {
        $event = new Event($event, $params);

        store($this)->push('dispatched', $event);

        return $event;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Livewire\Features\SupportEvents;

use function Livewire\store;

trait HandlesEvents
{
    protected $listeners = [];

    protected function getListeners() {
        return $this->listeners;
    }

    public function dispatch($event, ...$params)
    {
        $event = new Event($event, $params);

        store($this)->push('dispatched', $event);

        return $event;
    }
}

Function Calls

None

Variables

None

Stats

MD5 f2b2ce19dfdaa2a5ba7c126749db4013
Eval Count 0
Decode Time 124 ms