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
 * Redistributions of files must retain the above copyright notice.
 *
 * @copyright     Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
 * @link          https://cakephp.org CakePHP(tm) Project
 * @since         3.0.0
 * @license       https://opensource.org/licenses/mit-license.php MIT License
 */
namespace Cake\Test\TestCase\Log;

use Cake\Log\Log;
use Cake\Log\LogTrait;
use Cake\TestSuite\TestCase;

/**
 * Test case for LogTrait
 */
class LogTraitTest extends TestCase
{
    public function tearDown(): void
    {
        parent::tearDown();
        Log::drop('trait_test');
    }

    /**
     * Test log method.
     */
    public function testLog(): void
    {
        $mock = $this->getMockBuilder('Psr\Log\LoggerInterface')->getMock();
        $mock->expects($this->exactly(2))
            ->method('log')
            ->with(
                ...self::withConsecutive(
                    ['error', 'Testing'],
                    ['debug', 'message']
                )
            );

        Log::setConfig('trait_test', ['engine' => $mock]);
        $subject = new class {
            use LogTrait;
        };

        $subject->log('Testing');
        $subject->log('message', 'debug');
    }
}
 ?>

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
 * Redistributions of files must retain the above copyright notice.
 *
 * @copyright     Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
 * @link          https://cakephp.org CakePHP(tm) Project
 * @since         3.0.0
 * @license       https://opensource.org/licenses/mit-license.php MIT License
 */
namespace Cake\Test\TestCase\Log;

use Cake\Log\Log;
use Cake\Log\LogTrait;
use Cake\TestSuite\TestCase;

/**
 * Test case for LogTrait
 */
class LogTraitTest extends TestCase
{
    public function tearDown(): void
    {
        parent::tearDown();
        Log::drop('trait_test');
    }

    /**
     * Test log method.
     */
    public function testLog(): void
    {
        $mock = $this->getMockBuilder('Psr\Log\LoggerInterface')->getMock();
        $mock->expects($this->exactly(2))
            ->method('log')
            ->with(
                ...self::withConsecutive(
                    ['error', 'Testing'],
                    ['debug', 'message']
                )
            );

        Log::setConfig('trait_test', ['engine' => $mock]);
        $subject = new class {
            use LogTrait;
        };

        $subject->log('Testing');
        $subject->log('message', 'debug');
    }
}

Function Calls

None

Variables

None

Stats

MD5 08e5c24c96af26481d9d1fb22913f949
Eval Count 0
Decode Time 105 ms