You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by fo...@apache.org on 2020/05/11 06:56:16 UTC

[avro] branch master updated: AVRO-2827: Fixed property visibility. (#872)

This is an automated email from the ASF dual-hosted git repository.

fokko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/master by this push:
     new d916ca2  AVRO-2827: Fixed property visibility. (#872)
d916ca2 is described below

commit d916ca2c1ceaabb5fc002630171255dfcdf8d882
Author: Siad Ardroumli <si...@googlemail.com>
AuthorDate: Mon May 11 08:56:03 2020 +0200

    AVRO-2827: Fixed property visibility. (#872)
    
    This property is used in `AvroDataIOWriter::__construct()` and therefore it has to be public.
---
 lang/php/lib/avro/datum.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lang/php/lib/avro/datum.php b/lang/php/lib/avro/datum.php
index 0720e6b..8e99e4d 100644
--- a/lang/php/lib/avro/datum.php
+++ b/lang/php/lib/avro/datum.php
@@ -76,7 +76,7 @@ class AvroIODatumWriter
    * Schema used by this instance to write Avro data.
    * @var AvroSchema
    */
-  private $writers_schema;
+  public $writers_schema;
 
   /**
    * @param AvroSchema $writers_schema