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 BookStack\Console\Commands; use BookStack\Permissions\JointPermissionBui..

Decoded Output download

<?php

namespace BookStack\Console\Commands;

use BookStack\Permissions\JointPermissionBuilder;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\DB;

class RegeneratePermissionsCommand extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'bookstack:regenerate-permissions 
                            {--database= : The database connection to use}';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Regenerate all system permissions';

    /**
     * Execute the console command.
     */
    public function handle(JointPermissionBuilder $permissionBuilder): int
    {
        $connection = DB::getDefaultConnection();

        if ($this->option('database')) {
            DB::setDefaultConnection($this->option('database'));
        }

        $permissionBuilder->rebuildForAll();

        DB::setDefaultConnection($connection);
        $this->comment('Permissions regenerated');

        return 0;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace BookStack\Console\Commands;

use BookStack\Permissions\JointPermissionBuilder;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\DB;

class RegeneratePermissionsCommand extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'bookstack:regenerate-permissions 
                            {--database= : The database connection to use}';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Regenerate all system permissions';

    /**
     * Execute the console command.
     */
    public function handle(JointPermissionBuilder $permissionBuilder): int
    {
        $connection = DB::getDefaultConnection();

        if ($this->option('database')) {
            DB::setDefaultConnection($this->option('database'));
        }

        $permissionBuilder->rebuildForAll();

        DB::setDefaultConnection($connection);
        $this->comment('Permissions regenerated');

        return 0;
    }
}

Function Calls

None

Variables

None

Stats

MD5 8daadadf4eb3c8133e4dda69fff27bf5
Eval Count 0
Decode Time 90 ms