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 /* * This file is part of Flarum. * * For detailed copyright and license informa..

Decoded Output download

<?php

/*
 * This file is part of Flarum.
 *
 * For detailed copyright and license information, please view the
 * LICENSE file that was distributed with this source code.
 */

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Schema\Builder;

return [
    'up' => function (Builder $schema) {
        $schema->table('package_manager_tasks', function (Blueprint $table) use ($schema) {
            if (! $schema->hasColumn('package_manager_tasks', 'guessed_cause')) {
                $table->string('guessed_cause', 255)->nullable()->after('output');
            }
        });
    },
    'down' => function (Builder $schema) {
        $schema->table('package_manager_tasks', function (Blueprint $table) use ($schema) {
            if ($schema->hasColumn('package_manager_tasks', 'guessed_cause')) {
                $table->dropColumn('guessed_cause');
            }
        });
    }
];
 ?>

Did this file decode correctly?

Original Code

<?php

/*
 * This file is part of Flarum.
 *
 * For detailed copyright and license information, please view the
 * LICENSE file that was distributed with this source code.
 */

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Schema\Builder;

return [
    'up' => function (Builder $schema) {
        $schema->table('package_manager_tasks', function (Blueprint $table) use ($schema) {
            if (! $schema->hasColumn('package_manager_tasks', 'guessed_cause')) {
                $table->string('guessed_cause', 255)->nullable()->after('output');
            }
        });
    },
    'down' => function (Builder $schema) {
        $schema->table('package_manager_tasks', function (Blueprint $table) use ($schema) {
            if ($schema->hasColumn('package_manager_tasks', 'guessed_cause')) {
                $table->dropColumn('guessed_cause');
            }
        });
    }
];

Function Calls

None

Variables

None

Stats

MD5 e9902cc51effaa19e12b8f79093de0db
Eval Count 0
Decode Time 82 ms