Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/../vendor/markbaker/../paypal/../iyzico/./../unicodeveloper/laravel-paystack/../../paypal/../phar-io/../../vendor/symfony/../dragonmantank/../guzzlehttp/../authorizenet/../dflydev/../webmozart/../unicodeveloper/../fakerphp/.././symfony/event-dispatcher/../css-selector/../yaml/../http-foundation/../translation/Exception
الملفات الموجودة في هذا الـ Path:
.
..
ExceptionInterface.php
IncompleteDsnException.php
InvalidArgumentException.php
InvalidResourceException.php
LogicException.php
MissingRequiredOptionException.php
NotFoundResourceException.php
ProviderException.php
ProviderExceptionInterface.php
RuntimeException.php
UnsupportedSchemeException.php

مشاهدة ملف: MissingRequiredOptionException.php

<?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.
 */

namespace Symfony\Component\Translation\Exception;

/**
 * @author Oskar Stark <oskarstark@googlemail.com>
 */
class MissingRequiredOptionException extends IncompleteDsnException
{
    public function __construct(string $option, string $dsn = null, \Throwable $previous = null)
    {
        $message = sprintf('The option "%s" is required but missing.', $option);

        parent::__construct($message, $dsn, $previous);
    }
}