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; class FileLock extends CacheLock { /** * Atte..
Decoded Output download
<?php
namespace Illuminate\Cache;
class FileLock extends CacheLock
{
/**
* Attempt to acquire the lock.
*
* @return bool
*/
public function acquire()
{
return $this->store->add($this->name, $this->owner, $this->seconds);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Illuminate\Cache;
class FileLock extends CacheLock
{
/**
* Attempt to acquire the lock.
*
* @return bool
*/
public function acquire()
{
return $this->store->add($this->name, $this->owner, $this->seconds);
}
}
Function Calls
None |
Stats
MD5 | e93bf46d1d05eae3bcdba5db9d9501d3 |
Eval Count | 0 |
Decode Time | 97 ms |