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 Illuminate\Cache\Events; class RetrievingManyKeys extends CacheEvent { ..
Decoded Output download
<?php
namespace Illuminate\Cache\Events;
class RetrievingManyKeys extends CacheEvent
{
/**
* The keys that are being retrieved.
*
* @var array
*/
public $keys;
/**
* Create a new event instance.
*
* @param string|null $storeName
* @param array $keys
* @param array $tags
* @return void
*/
public function __construct($storeName, $keys, array $tags = [])
{
parent::__construct($storeName, $keys[0] ?? '', $tags);
$this->keys = $keys;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Illuminate\Cache\Events;
class RetrievingManyKeys extends CacheEvent
{
/**
* The keys that are being retrieved.
*
* @var array
*/
public $keys;
/**
* Create a new event instance.
*
* @param string|null $storeName
* @param array $keys
* @param array $tags
* @return void
*/
public function __construct($storeName, $keys, array $tags = [])
{
parent::__construct($storeName, $keys[0] ?? '', $tags);
$this->keys = $keys;
}
}
Function Calls
| None |
Stats
| MD5 | 96d22d7e6f5f45d559f46918065c1a39 |
| Eval Count | 0 |
| Decode Time | 97 ms |