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 Pagekit\Debug; use DebugBar\DebugBar as BaseDebugBar; class DebugBar ex..

Decoded Output download

<?php

namespace Pagekit\Debug;

use DebugBar\DebugBar as BaseDebugBar;

class DebugBar extends BaseDebugBar
{
    /**
     * {@inheritdoc}
     */
    public function getCurrentRequestId()
    {
        if ($this->requestId == null) {
            $this->requestId = sha1(parent::getCurrentRequestId());
        }

        return $this->requestId;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace Pagekit\Debug;

use DebugBar\DebugBar as BaseDebugBar;

class DebugBar extends BaseDebugBar
{
    /**
     * {@inheritdoc}
     */
    public function getCurrentRequestId()
    {
        if ($this->requestId == null) {
            $this->requestId = sha1(parent::getCurrentRequestId());
        }

        return $this->requestId;
    }
}

Function Calls

None

Variables

None

Stats

MD5 b75ba7a38cab8806f13ec55cb3d7a240
Eval Count 0
Decode Time 83 ms