Skip to content

Commit

Permalink
relax Server attributes visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
1ma committed Jan 12, 2020
1 parent 78bc5d5 commit f0ad5ea
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,27 +20,27 @@ class Server
/**
* @var ContainerInterface
*/
private $container;
protected $container;

/**
* @var string[]
*/
private $methods;
protected $methods;

/**
* @var string[]
*/
private $middlewares;
protected $middlewares;

/**
* @var int|null
*/
private $batchLimit;
protected $batchLimit;

/**
* @var bool
*/
private $simdJson;
protected $simdJson;

public function __construct(ContainerInterface $container, int $batchLimit = null, bool $simdJson = false)
{
Expand Down

0 comments on commit f0ad5ea

Please sign in to comment.