Skip to content

Commit a37f464

Browse files
committed
Merge branch 'master' of github.com:beyondcode/laravel-dump-server
2 parents 34bc9aa + bf42233 commit a37f464

File tree

5 files changed

+6
-1
lines changed

5 files changed

+6
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ language: php
33
php:
44
- 7.1
55
- 7.2
6+
- nightly
67

78
env:
89
matrix:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Quality Score](https://img.shields.io/scrutinizer/g/beyondcode/laravel-dump-server.svg?style=flat-square)](https://scrutinizer-ci.com/g/beyondcode/laravel-dump-server)
55
[![Total Downloads](https://img.shields.io/packagist/dt/beyondcode/laravel-dump-server.svg?style=flat-square)](https://packagist.org/packages/beyondcode/laravel-dump-server)
66

7-
Bringing the Symfony Var-Dump Server to Laravel.
7+
Bringing the [Symfony Var-Dump Server](https://symfony.com/doc/current/components/var_dumper.html#the-dump-server) to Laravel.
88

99
This package will give you a dump server, that collects all your `dump` call outputs, so that it does not interfere with HTTP / API responses.
1010

config/.gitkeep

Whitespace-only changes.

src/DumpServerCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ class DumpServerCommand extends Command
2424
*/
2525
protected $description = 'Start the dump server to collect dump information.';
2626

27+
/** @var DumpServer */
2728
private $server;
2829

2930
public function __construct(DumpServer $server)

src/RequestContextProvider.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@
88

99
class RequestContextProvider implements ContextProviderInterface
1010
{
11+
/** @var Request */
1112
private $currentRequest;
13+
14+
/** @var VarCloner */
1215
private $cloner;
1316

1417
public function __construct(Request $currentRequest = null)

0 commit comments

Comments
 (0)