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); /** * Passbolt ~ Open source password manager for teams ..

Decoded Output download

<?php
declare(strict_types=1);

/**
 * Passbolt ~ Open source password manager for teams
 * Copyright (c) Passbolt SA (https://www.passbolt.com)
 *
 * Licensed under GNU Affero General Public License version 3 of the or any later version.
 * For full copyright and license information, please see the LICENSE.txt
 * Redistributions of files must retain the above copyright notice.
 *
 * @copyright     Copyright (c) Passbolt SA (https://www.passbolt.com)
 * @license       https://opensource.org/licenses/AGPL-3.0 AGPL License
 * @link          https://www.passbolt.com Passbolt(tm)
 * @since         3.3.0
 */
namespace App\Test\Factory;

use App\Model\Entity\AuthenticationToken;
use Cake\Chronos\Chronos;
use Cake\Chronos\ChronosInterface;
use Cake\I18n\FrozenDate;
use CakephpFixtureFactories\Factory\BaseFactory as CakephpBaseFactory;
use Faker\Generator;

/**
 * AuthenticationTokenFactory
 *
 * @method \App\Model\Entity\AuthenticationToken|\App\Model\Entity\AuthenticationToken[] persist()
 * @method \App\Model\Entity\AuthenticationToken[] getEntity()
 * @method \App\Model\Entity\AuthenticationToken getEntities()
 * @method static \App\Model\Entity\AuthenticationToken get(mixed $primaryKey, array $options = [])
 * @method static \App\Model\Entity\AuthenticationToken firstOrFail($conditions = null)
 */
class AuthenticationTokenFactory extends CakephpBaseFactory
{
    /**
     * Defines the Table Registry used to generate entities with
     *
     * @return string
     */
    protected function getRootTableRegistryName(): string
    {
        return 'AuthenticationTokens';
    }

    /**
     * Defines the factory's default values. This is useful for
     * not nullable fields. You may use methods of the present factory here too.
     *
     * @return void
     */
    protected function setDefaultTemplate(): void
    {
        $this->setDefaultData(function (Generator $faker) {
            return [
                'token' => $faker->uuid(),
                'user_id' => $faker->uuid(),
                'type' => AuthenticationToken::TYPE_LOGIN,
                'data' => null,
                'active' => $faker->boolean(),
                'created' => Chronos::now(),
                'modified' => Chronos::now(),
            ];
        });
    }

    /**
     * @param ChronosInterface $modified token type
     * @return $this
     */
    public function modified(ChronosInterface $modified)
    {
        return $this->patchData(compact('modified'));
    }

    /**
     * @param ChronosInterface $created token type
     * @return $this
     */
    public function created(ChronosInterface $created)
    {
        return $this->patchData(compact('created'));
    }

    /**
     * @return $this
     */
    public function expired()
    {
        return $this->created(new FrozenDate('5 years ago'));
    }

    /**
     * @param string $type token type
     * @return $this
     */
    public function type(string $type)
    {
        return $this->patchData(compact('type'));
    }

    /**
     * @param array $data token type
     * @return $this
     */
    public function data(array $data)
    {
        $data = empty($data) ? null : json_encode($data);

        return $this->patchData(compact('data'));
    }

    /**
     * @return $this
     */
    public function inactive()
    {
        return $this->patchData(['active' => false]);
    }

    /**
     * @return $this
     */
    public function active()
    {
        return $this->patchData(['active' => true]);
    }

    /**
     * @param string $userId user ID
     * @return $this
     */
    public function userId(string $userId)
    {
        return $this->patchData(['user_id' => $userId]);
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php
declare(strict_types=1);

/**
 * Passbolt ~ Open source password manager for teams
 * Copyright (c) Passbolt SA (https://www.passbolt.com)
 *
 * Licensed under GNU Affero General Public License version 3 of the or any later version.
 * For full copyright and license information, please see the LICENSE.txt
 * Redistributions of files must retain the above copyright notice.
 *
 * @copyright     Copyright (c) Passbolt SA (https://www.passbolt.com)
 * @license       https://opensource.org/licenses/AGPL-3.0 AGPL License
 * @link          https://www.passbolt.com Passbolt(tm)
 * @since         3.3.0
 */
namespace App\Test\Factory;

use App\Model\Entity\AuthenticationToken;
use Cake\Chronos\Chronos;
use Cake\Chronos\ChronosInterface;
use Cake\I18n\FrozenDate;
use CakephpFixtureFactories\Factory\BaseFactory as CakephpBaseFactory;
use Faker\Generator;

/**
 * AuthenticationTokenFactory
 *
 * @method \App\Model\Entity\AuthenticationToken|\App\Model\Entity\AuthenticationToken[] persist()
 * @method \App\Model\Entity\AuthenticationToken[] getEntity()
 * @method \App\Model\Entity\AuthenticationToken getEntities()
 * @method static \App\Model\Entity\AuthenticationToken get(mixed $primaryKey, array $options = [])
 * @method static \App\Model\Entity\AuthenticationToken firstOrFail($conditions = null)
 */
class AuthenticationTokenFactory extends CakephpBaseFactory
{
    /**
     * Defines the Table Registry used to generate entities with
     *
     * @return string
     */
    protected function getRootTableRegistryName(): string
    {
        return 'AuthenticationTokens';
    }

    /**
     * Defines the factory's default values. This is useful for
     * not nullable fields. You may use methods of the present factory here too.
     *
     * @return void
     */
    protected function setDefaultTemplate(): void
    {
        $this->setDefaultData(function (Generator $faker) {
            return [
                'token' => $faker->uuid(),
                'user_id' => $faker->uuid(),
                'type' => AuthenticationToken::TYPE_LOGIN,
                'data' => null,
                'active' => $faker->boolean(),
                'created' => Chronos::now(),
                'modified' => Chronos::now(),
            ];
        });
    }

    /**
     * @param ChronosInterface $modified token type
     * @return $this
     */
    public function modified(ChronosInterface $modified)
    {
        return $this->patchData(compact('modified'));
    }

    /**
     * @param ChronosInterface $created token type
     * @return $this
     */
    public function created(ChronosInterface $created)
    {
        return $this->patchData(compact('created'));
    }

    /**
     * @return $this
     */
    public function expired()
    {
        return $this->created(new FrozenDate('5 years ago'));
    }

    /**
     * @param string $type token type
     * @return $this
     */
    public function type(string $type)
    {
        return $this->patchData(compact('type'));
    }

    /**
     * @param array $data token type
     * @return $this
     */
    public function data(array $data)
    {
        $data = empty($data) ? null : json_encode($data);

        return $this->patchData(compact('data'));
    }

    /**
     * @return $this
     */
    public function inactive()
    {
        return $this->patchData(['active' => false]);
    }

    /**
     * @return $this
     */
    public function active()
    {
        return $this->patchData(['active' => true]);
    }

    /**
     * @param string $userId user ID
     * @return $this
     */
    public function userId(string $userId)
    {
        return $this->patchData(['user_id' => $userId]);
    }
}

Function Calls

None

Variables

None

Stats

MD5 12ce49ad4202ccf29552f0df154f20b7
Eval Count 0
Decode Time 79 ms