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\Console\Commands; use Illuminate\Console\Command; use Illuminate\Fil..

Decoded Output download

<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use Illuminate\Filesystem\Filesystem;

class StorageTempClear extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'storage-temp:clear';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Clear all storage/app/temp files';

    /**
     * Execute the console command.
     *
     * @return void
     *
     */
    public function handle()
    {
        $filesystem = app(Filesystem::class);

        $path = get_storage_path('app/temp');

        foreach ($filesystem->glob("{$path}/*") as $file) {
            $filesystem->delete($file);
        }

        $this->info('Temporary files cleared!');
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use Illuminate\Filesystem\Filesystem;

class StorageTempClear extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'storage-temp:clear';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Clear all storage/app/temp files';

    /**
     * Execute the console command.
     *
     * @return void
     *
     */
    public function handle()
    {
        $filesystem = app(Filesystem::class);

        $path = get_storage_path('app/temp');

        foreach ($filesystem->glob("{$path}/*") as $file) {
            $filesystem->delete($file);
        }

        $this->info('Temporary files cleared!');
    }
}

Function Calls

None

Variables

None

Stats

MD5 0ff15dfdeb92f2a9e18c7f6319cd592b
Eval Count 0
Decode Time 114 ms