JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "Debugging.php"
Full Path: /var/www/laravel_filter/vendor/laravel/framework/src/Illuminate/Testing/Fluent/Concerns/Debugging.php
File size: 725 bytes
MIME-type: text/x-php
Charset: utf-8
<?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 never
*/
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);
}