Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Events
:
Debugging.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Illuminate\Testing\Fluent\Concerns; trait Debugging { /** * Dumps the given props. * * @param string|null $prop * @return $this */ public function dump(string $prop = null): self { dump($this->prop($prop)); return $this; } /** * Dumps the given props and exits. * * @param string|null $prop * @return void */ public function dd(string $prop = null): void { dd($this->prop($prop)); } /** * Retrieve a prop within the current scope using "dot" notation. * * @param string|null $key * @return mixed */ abstract protected function prop(string $key = null); }