Skip to content

Commit

Permalink
switch to protected members (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-zh authored and tPl0ch committed Sep 24, 2019
1 parent 267c1b3 commit c488c06
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/Objects/RecordSerializer.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,47 +33,47 @@ class RecordSerializer
/**
* @var Registry
*/
private $registry;
protected $registry;

/**
* @var callable
*/
private $datumWriterFactoryFunc;
protected $datumWriterFactoryFunc;

/**
* @var callable
*/
private $datumReaderFactoryFunc;
protected $datumReaderFactoryFunc;

/**
* @var callable
*/
private $protocolEncoderFactoryFunc;
protected $protocolEncoderFactoryFunc;

/**
* @var callable
*/
private $schemaIdGetter;
protected $schemaIdGetter;

/**
* @var callable
*/
private $avroBinaryGetter;
protected $avroBinaryGetter;

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

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

/**
* @var callable
*/
private $protocolValidatorFunc;
protected $protocolValidatorFunc;

public function __construct(Registry $registry, array $options = [])
{
Expand Down

0 comments on commit c488c06

Please sign in to comment.