Skip to content

Commit

Permalink
Update InstanceValidator.php to use "protected" keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
nickevansuk authored Aug 7, 2024
1 parent 725a6bd commit 5983e15
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Validators/InstanceValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

class InstanceValidator extends BaseValidator
{
private $classname;
/**
* @var string
*/
protected $classname;

public function __construct($classname)
{
$this->classname = $classname;
Expand Down

0 comments on commit 5983e15

Please sign in to comment.