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 App\Providers; use App\Events\GoodsDeleted; use App\Events\GoodsGroupDel..

Decoded Output download

<?php

namespace App\Providers;

use App\Events\GoodsDeleted;
use App\Events\GoodsGroupDeleted;
use App\Events\OrderUpdated;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Event;

class EventServiceProvider extends ServiceProvider
{
    /**
     * The event listener mappings for the application.
     *
     * @var array
     */
    protected $listen = [
        Registered::class => [
            SendEmailVerificationNotification::class,
        ],
        GoodsGroupDeleted::class => [
            \App\Listeners\GoodsGroupDeleted::class,
        ],
        GoodsDeleted::class => [
            \App\Listeners\GoodsDeleted::class,
        ],
        OrderUpdated::class => [
            \App\Listeners\OrderUpdated::class,
        ],
    ];

    /**
     * Register any events for your application.
     *
     * @return void
     */
    public function boot()
    {
        parent::boot();
        //
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace App\Providers;

use App\Events\GoodsDeleted;
use App\Events\GoodsGroupDeleted;
use App\Events\OrderUpdated;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Event;

class EventServiceProvider extends ServiceProvider
{
    /**
     * The event listener mappings for the application.
     *
     * @var array
     */
    protected $listen = [
        Registered::class => [
            SendEmailVerificationNotification::class,
        ],
        GoodsGroupDeleted::class => [
            \App\Listeners\GoodsGroupDeleted::class,
        ],
        GoodsDeleted::class => [
            \App\Listeners\GoodsDeleted::class,
        ],
        OrderUpdated::class => [
            \App\Listeners\OrderUpdated::class,
        ],
    ];

    /**
     * Register any events for your application.
     *
     * @return void
     */
    public function boot()
    {
        parent::boot();
        //
    }
}

Function Calls

None

Variables

None

Stats

MD5 e181bd8c149fb2d87ea57ee3ad6ffa7d
Eval Count 0
Decode Time 99 ms