码迷,mamicode.com
首页 > Web开发 > 详细

[李景山php]每天laravel-20161108|ShareErrorsFromSession.php

时间:2016-09-06 23:51:18      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:laravel

<?php

namespace Illuminate\View\Middleware;

use Closure;
use Illuminate\Support\ViewErrorBag;
use Illuminate\Contracts\View\Factory as ViewFactory;

class ShareErrorsFromSession
{
    /**
     * The view factory implementation.
     *
     * @var \Illuminate\Contracts\View\Factory
     */
    protected $view;// The view factory implementation

    /**
     * Create a new error binder instance.
     *
     * @param  \Illuminate\Contracts\View\Factory  $view
     * @return void
     */
    public function __construct(ViewFactory $view)
    {
        $this->view = $view;//set this view
    }//Create a new error binder instance.

    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @return mixed
     */
    public function handle($request, Closure $next)
    {//Handle an incoming request.
        // If the current session has an "errors" variable bound to it, we will share
        // its value with all view instances so the views can easily access errors
        // without having to bind. An empty bag is set when there aren‘t errors.
        $this->view->share(
            ‘errors‘, $request->session()->get(‘errors‘) ?: new ViewErrorBag
        );//If the current session has an "errors" variable bound to it,we will share
       //its value with all view instances so the views can easily access errors
       //without having to bind. An empty bag is set when there aren‘t errors.

        // Putting the errors in the view for every view allows the developer to just
        // assume that some errors are always available, which is convenient since
        // they don‘t have to continually run checks for the presence of errors.

        return $next($request);
       //Putting the errors in the view for every view allows the developer to just
       // assume that some errors are always available, which is convenient since
       // they don‘t have to continually run checks for the presence of errors.
    }
}


本文出自 “专注php 群号:414194301” 博客,请务必保留此出处http://jingshanls.blog.51cto.com/3357095/1846655

[李景山php]每天laravel-20161108|ShareErrorsFromSession.php

标签:laravel

原文地址:http://jingshanls.blog.51cto.com/3357095/1846655

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!