Skip to content

Commit

Permalink
Make class properties protected
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Ragheb committed Mar 11, 2024
1 parent 4d6a338 commit 87ecab3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Writing/Writer.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@

class Writer
{
private bool $isStatic;
private bool $isExternal;
protected bool $isStatic;
protected bool $isExternal;

private ?string $staticTypeOutputPath;
protected ?string $staticTypeOutputPath;

private ?string $laravelTypeOutputPath;
protected ?string $laravelTypeOutputPath;
protected array $generatedFiles = [
'postman' => null,
'openapi' => null,
Expand All @@ -31,7 +31,7 @@ class Writer
],
];

private string $laravelAssetsPath;
protected string $laravelAssetsPath;

public function __construct(protected DocumentationConfig $config, public PathConfig $paths)
{
Expand Down

0 comments on commit 87ecab3

Please sign in to comment.