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 declare(strict_types=1); /** * CakePHP(tm) : Rapid Development Framework (https://..
Decoded Output download
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @since 4.1.0
* @license https://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\TestSuite\Constraint\Session;
use Cake\Utility\Hash;
use PHPUnit\Framework\Constraint\Constraint;
/**
* SessionHasKey
*
* @internal
*/
class SessionHasKey extends Constraint
{
/**
* @var string
*/
protected string $path;
/**
* Constructor
*
* @param string $path Session Path
*/
public function __construct(string $path)
{
$this->path = $path;
}
/**
* Compare session value
*
* @param mixed $other Value to compare with
* @return bool
*/
public function matches(mixed $other): bool
{
// Server::run calls Session::close at the end of the request.
// Which means, that we cannot use Session object here to access the session data.
// Call to Session::read will start new session (and will erase the data).
/** @psalm-suppress InvalidScalarArgument */
return Hash::check($_SESSION, $this->path) === true;
}
/**
* Assertion message
*
* @return string
*/
public function toString(): string
{
return 'is a path present in the session';
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @since 4.1.0
* @license https://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\TestSuite\Constraint\Session;
use Cake\Utility\Hash;
use PHPUnit\Framework\Constraint\Constraint;
/**
* SessionHasKey
*
* @internal
*/
class SessionHasKey extends Constraint
{
/**
* @var string
*/
protected string $path;
/**
* Constructor
*
* @param string $path Session Path
*/
public function __construct(string $path)
{
$this->path = $path;
}
/**
* Compare session value
*
* @param mixed $other Value to compare with
* @return bool
*/
public function matches(mixed $other): bool
{
// Server::run calls Session::close at the end of the request.
// Which means, that we cannot use Session object here to access the session data.
// Call to Session::read will start new session (and will erase the data).
/** @psalm-suppress InvalidScalarArgument */
return Hash::check($_SESSION, $this->path) === true;
}
/**
* Assertion message
*
* @return string
*/
public function toString(): string
{
return 'is a path present in the session';
}
}
Function Calls
None |
Stats
MD5 | 278d089f928318fe47138bf5ed6e373e |
Eval Count | 0 |
Decode Time | 115 ms |