aboutsummaryrefslogblamecommitdiffhomepage
path: root/vendor/symfony/intl/Symfony/Component/Intl/Resources/stubs/functions.php
blob: 7a2d4b6729a9b694571669242a14eb81f469ad2b (plain) (tree)















































































                                                                                   
<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

use Symfony\Component\Intl\Globals\IntlGlobals;

if (!function_exists('intl_is_failure')) {

    /**
     * Stub implementation for the {@link intl_is_failure()} function of the intl
     * extension.
     *
     * @author Bernhard Schussek <bschussek@gmail.com>
     *
     * @param integer $errorCode  The error code returned by intl_get_error_code().
     *
     * @return Boolean Whether the error code indicates an error.
     *
     * @see \Symfony\Component\Intl\Globals\StubIntlGlobals::isFailure
     */
    function intl_is_failure($errorCode)
    {
        return IntlGlobals::isFailure($errorCode);
    }

    /**
     * Stub implementation for the {@link intl_get_error_code()} function of the
     * intl extension.
     *
     * @author Bernhard Schussek <bschussek@gmail.com>
     *
     * @return Boolean The error code of the last intl function call or
     *                 IntlGlobals::U_ZERO_ERROR if no error occurred.
     *
     * @see \Symfony\Component\Intl\Globals\StubIntlGlobals::getErrorCode
     */
    function intl_get_error_code()
    {
        return IntlGlobals::getErrorCode();
    }

    /**
     * Stub implementation for the {@link intl_get_error_code()} function of the
     * intl extension.
     *
     * @author Bernhard Schussek <bschussek@gmail.com>
     *
     * @return Boolean The error message of the last intl function call or
     *                 "U_ZERO_ERROR" if no error occurred.
     *
     * @see \Symfony\Component\Intl\Globals\StubIntlGlobals::getErrorMessage
     */
    function intl_get_error_message()
    {
        return IntlGlobals::getErrorMessage();
    }

    /**
     * Stub implementation for the {@link intl_error_name()} function of the intl
     * extension.
     *
     * @param integer $errorCode The error code.
     *
     * @return string The name of the error code constant.
     *
     * @see \Symfony\Component\Intl\Globals\StubIntlGlobals::getErrorName
     */
    function intl_error_name($errorCode)
    {
        return IntlGlobals::getErrorName($errorCode);
    }

}