Laravel по-русски

Русское сообщество разработки на PHP-фреймворке Laravel.

Ты не вошёл. Вход тут.

#1 21.08.2019 11:24:26

Поиск ошибки

Всем привет. Глупый вопрос, наверное. Недавно начал изучать laravel. Кот прошелся по клавиатуре и где-то прописал пару лишних букв. Как мне теперь найти это место? В ошибке ссылается сразу в папку посредников и пишет, что такой посредник не найден. А откуда ссылается - хз(
Не нашел как тут прикреплять скрины, так что воть:

ReflectionException (-1)
Class App\Http\Middleware\EncгwwkблокнryptCookies does not exist

C:\Users\user\Desktop\OSPanel\domains\landing\vendor\laravel\framework\src\Illuminate\Container\Container.php
    }

    /**
     * Instantiate a concrete instance of the given type.
     *
     * @param  string  $concrete
     * @return mixed
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     */
    public function build($concrete)
    {
        // If the concrete type is actually a Closure, we will just execute it and
        // hand back the results of the functions, which allows functions to be
        // used as resolvers for more fine-tuned resolution of these objects.
        if ($concrete instanceof Closure) {
            return $concrete($this, $this->getLastParameterOverride());
        }

        $reflector = new ReflectionClass($concrete);

        // If the type is not instantiable, the developer is attempting to resolve
        // an abstract type such as an Interface or Abstract Class and there is
        // no binding registered for the abstractions so we need to bail out.
        if (! $reflector->isInstantiable()) {
            return $this->notInstantiable($concrete);
        }

        $this->buildStack[] = $concrete;

        $constructor = $reflector->getConstructor();

        // If there are no constructors, that means there are no dependencies then
        // we can just resolve the instances of the objects right away, without
        // resolving any other types or dependencies out of these containers.
        if (is_null($constructor)) {
            array_pop($this->buildStack);

            return new $concrete;
        }
Arguments
"Class App\Http\Middleware\EncгwwkблокнryptCookies does not exist"

Не в сети

#2 21.08.2019 16:49:49

Re: Поиск ошибки

Посмотри тут - app/http/kernel.php, посредники там регистрируют

Не в сети

#3 22.08.2019 09:35:27

Re: Поиск ошибки

А как вообще находить места, откуда эти ошибки происходят, а не на что они ссылаются в итоге

Не в сети

#4 22.08.2019 09:39:08

Re: Поиск ошибки

Непонятен вопрос. А вообще-то ошибки происходят от неправильного написания

Не в сети

Подвал раздела