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 3.2.0
* @license https://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\TestSuite\Constraint;
use Cake\Event\EventManager;
use PHPUnit\Framework\AssertionFailedError;
use PHPUnit\Framework\Constraint\Constraint;
/**
* EventFired constraint
*
* @internal
*/
class EventFired extends Constraint
{
/**
* Array of fired events
*
* @var \Cake\Event\EventManager
*/
protected EventManager $_eventManager;
/**
* Constructor
*
* @param \Cake\Event\EventManager $eventManager Event manager to check
*/
public function __construct(EventManager $eventManager)
{
$this->_eventManager = $eventManager;
if ($this->_eventManager->getEventList() === null) {
throw new AssertionFailedError(
'The event manager you are asserting against is not configured to track events.'
);
}
}
/**
* Checks if event is in fired array
*
* @param mixed $other Constraint check
* @return bool
*/
public function matches(mixed $other): bool
{
$list = $this->_eventManager->getEventList();
return $list === null ? false : $list->hasEvent($other);
}
/**
* Assertion message string
*
* @return string
*/
public function toString(): string
{
return 'was fired';
}
}
?>
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 3.2.0
* @license https://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\TestSuite\Constraint;
use Cake\Event\EventManager;
use PHPUnit\Framework\AssertionFailedError;
use PHPUnit\Framework\Constraint\Constraint;
/**
* EventFired constraint
*
* @internal
*/
class EventFired extends Constraint
{
/**
* Array of fired events
*
* @var \Cake\Event\EventManager
*/
protected EventManager $_eventManager;
/**
* Constructor
*
* @param \Cake\Event\EventManager $eventManager Event manager to check
*/
public function __construct(EventManager $eventManager)
{
$this->_eventManager = $eventManager;
if ($this->_eventManager->getEventList() === null) {
throw new AssertionFailedError(
'The event manager you are asserting against is not configured to track events.'
);
}
}
/**
* Checks if event is in fired array
*
* @param mixed $other Constraint check
* @return bool
*/
public function matches(mixed $other): bool
{
$list = $this->_eventManager->getEventList();
return $list === null ? false : $list->hasEvent($other);
}
/**
* Assertion message string
*
* @return string
*/
public function toString(): string
{
return 'was fired';
}
}
Function Calls
| None |
Stats
| MD5 | d37fccf2a61f1d22e9fe0f0cc0967aa9 |
| Eval Count | 0 |
| Decode Time | 99 ms |