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)
 * @copyright     Copyright (c) 2017 Aura for PHP
 * @link          https://cakephp.org CakePHP(tm) Project
 * @since         4.2.0
 * @license       https://opensource.org/licenses/mit-license.php MIT License
 */
namespace Cake\I18n;

use Cake\I18n\Exception\I18nException;

/**
 * A ServiceLocator implementation for loading and retaining formatter objects.
 *
 * @internal
 */
class FormatterLocator
{
    /**
     * A registry to retain formatter objects.
     *
     * @var array<string, \Cake\I18n\FormatterInterface|class-string<\Cake\I18n\FormatterInterface>>
     */
    protected array $registry = [];

    /**
     * Tracks whether a registry entry has been converted from a
     * FQCN to a formatter object.
     *
     * @var array<bool>
     */
    protected array $converted = [];

    /**
     * Constructor.
     *
     * @param array<string, class-string<\Cake\I18n\FormatterInterface>> $registry An array of key-value pairs where the key is the
     * formatter name the value is a FQCN for the formatter.
     */
    public function __construct(array $registry = [])
    {
        foreach ($registry as $name => $spec) {
            $this->set($name, $spec);
        }
    }

    /**
     * Sets a formatter into the registry by name.
     *
     * @param string $name The formatter name.
     * @param class-string<\Cake\I18n\FormatterInterface> $className A FQCN for a formatter.
     * @return void
     */
    public function set(string $name, string $className): void
    {
        $this->registry[$name] = $className;
        $this->converted[$name] = false;
    }

    /**
     * Gets a formatter from the registry by name.
     *
     * @param string $name The formatter to retrieve.
     * @return \Cake\I18n\FormatterInterface A formatter object.
     * @throws \Cake\I18n\Exception\I18nException
     */
    public function get(string $name): FormatterInterface
    {
        if (!isset($this->registry[$name])) {
            throw new I18nException(sprintf('Formatter named `%s` has not been registered.', $name));
        }

        if (!$this->converted[$name]) {
            /** @var class-string<\Cake\I18n\FormatterInterface> $formatter */
            $formatter = $this->registry[$name];
            $this->registry[$name] = new $formatter();
            $this->converted[$name] = true;
        }

        /** @var \Cake\I18n\FormatterInterface */
        return $this->registry[$name];
    }
}
 ?>

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)
 * @copyright     Copyright (c) 2017 Aura for PHP
 * @link          https://cakephp.org CakePHP(tm) Project
 * @since         4.2.0
 * @license       https://opensource.org/licenses/mit-license.php MIT License
 */
namespace Cake\I18n;

use Cake\I18n\Exception\I18nException;

/**
 * A ServiceLocator implementation for loading and retaining formatter objects.
 *
 * @internal
 */
class FormatterLocator
{
    /**
     * A registry to retain formatter objects.
     *
     * @var array<string, \Cake\I18n\FormatterInterface|class-string<\Cake\I18n\FormatterInterface>>
     */
    protected array $registry = [];

    /**
     * Tracks whether a registry entry has been converted from a
     * FQCN to a formatter object.
     *
     * @var array<bool>
     */
    protected array $converted = [];

    /**
     * Constructor.
     *
     * @param array<string, class-string<\Cake\I18n\FormatterInterface>> $registry An array of key-value pairs where the key is the
     * formatter name the value is a FQCN for the formatter.
     */
    public function __construct(array $registry = [])
    {
        foreach ($registry as $name => $spec) {
            $this->set($name, $spec);
        }
    }

    /**
     * Sets a formatter into the registry by name.
     *
     * @param string $name The formatter name.
     * @param class-string<\Cake\I18n\FormatterInterface> $className A FQCN for a formatter.
     * @return void
     */
    public function set(string $name, string $className): void
    {
        $this->registry[$name] = $className;
        $this->converted[$name] = false;
    }

    /**
     * Gets a formatter from the registry by name.
     *
     * @param string $name The formatter to retrieve.
     * @return \Cake\I18n\FormatterInterface A formatter object.
     * @throws \Cake\I18n\Exception\I18nException
     */
    public function get(string $name): FormatterInterface
    {
        if (!isset($this->registry[$name])) {
            throw new I18nException(sprintf('Formatter named `%s` has not been registered.', $name));
        }

        if (!$this->converted[$name]) {
            /** @var class-string<\Cake\I18n\FormatterInterface> $formatter */
            $formatter = $this->registry[$name];
            $this->registry[$name] = new $formatter();
            $this->converted[$name] = true;
        }

        /** @var \Cake\I18n\FormatterInterface */
        return $this->registry[$name];
    }
}

Function Calls

None

Variables

None

Stats

MD5 b96ca227d7dc14228c3ede18d910b396
Eval Count 0
Decode Time 105 ms