Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Dumps information about a variable
<?php var_dump(mixed $value, mixed ...$values): void
<?php         if (function_exists('dump')) {

            dump($this->value, ...$arguments);

        } else {

            var_dump($this->value);

        }



        return $this;
<?php             dd($this->value, ...$arguments);

        }



        var_dump($this->value);



        exit(1);

    }