PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
barryvdh
/
laravel-debugbar
/
src
/
DataCollector
<?php namespace Barryvdh\Debugbar\DataCollector; use DebugBar\DataCollector\DataCollector; use DebugBar\DataCollector\DataCollectorInterface; use DebugBar\DataCollector\Renderable; use Illuminate\Contracts\Events\Dispatcher; /** * Collector for Models. */ class ModelsCollector extends DataCollector implements DataCollectorInterface, Renderable { public $models = []; public $count = 0; /** * @param Dispatcher $events */ public function __construct(Dispatcher $events) { $events->listen('eloquent.retrieved:*', function ($event, $models) { foreach (array_filter($models) as $model) { $class = get_class($model); $this->models[$class] = ($this->models[$class] ?? 0) + 1; $this->count++; } }); } public function collect() { ksort($this->models, SORT_NUMERIC); return ['data' => array_reverse($this->models), 'count' => $this->count]; } /** * {@inheritDoc} */ public function getName() { return 'models'; } /** * {@inheritDoc} */ public function getWidgets() { return [ "models" => [ "icon" => "cubes", "widget" => "PhpDebugBar.Widgets.HtmlVariableListWidget", "map" => "models.data", "default" => "{}" ], 'models:badge' => [ 'map' => 'models.count', 'default' => 0 ] ]; } }
[-] CacheCollector.php
[edit]
[-] LaravelCollector.php
[edit]
[+]
..
[-] PhpInfoCollector.php
[edit]
[-] SessionCollector.php
[edit]
[-] ModelsCollector.php
[edit]
[-] ViewCollector.php
[edit]
[-] FilesCollector.php
[edit]
[-] EventCollector.php
[edit]
[-] LivewireCollector.php
[edit]
[-] MultiAuthCollector.php
[edit]
[-] RequestCollector.php
[edit]
[-] RouteCollector.php
[edit]
[-] LogsCollector.php
[edit]
[-] GateCollector.php
[edit]
[-] QueryCollector.php
[edit]