Skip to content

Commit

Permalink
$tmpFile. $writer and $settings of Generator class made protect…
Browse files Browse the repository at this point in the history
…ed (#32)

to be possible extend Generator class and override methods using those class variables.
  • Loading branch information
pashamesh committed May 12, 2020
1 parent 47329ed commit bb53180
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ class Generator
/**
* @var string
*/
private $tmpFile;
protected $tmpFile;

/**
* @var \XMLWriter
*/
private $writer;
protected $writer;

/**
* @var Settings
*/
private $settings;
protected $settings;

/**
* Generator constructor.
Expand Down

0 comments on commit bb53180

Please sign in to comment.