ViewException.php
1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
namespace Facade\Ignition\Exceptions;
use ErrorException;
use Facade\FlareClient\Contracts\ProvidesFlareContext;
use Facade\Ignition\DumpRecorder\HtmlDumper;
class ViewException extends ErrorException implements ProvidesFlareContext
{
    /** @var array */
    protected $viewData = [];
    /** @var string */
    protected $view = '';
    public function setViewData(array $data)
    {
        $this->viewData = $data;
    }
    public function getViewData(): array
    {
        return $this->viewData;
    }
    public function setView(string $path)
    {
        $this->view = $path;
    }
    protected function dumpViewData($variable): string
    {
        return (new HtmlDumper())->dumpVariable($variable);
    }
    public function context(): array
    {
        $context = [
            'view' => [
                'view' => $this->view,
            ],
        ];
        if (config('flare.reporting.report_view_data')) {
            $context['view']['data'] = array_map([$this, 'dumpViewData'], $this->viewData);
        }
        return $context;
    }
}