Skip to content

Commit

Permalink
revert 278bdac which introduced property overrides of previously magi…
Browse files Browse the repository at this point in the history
…cally accessed properties
  • Loading branch information
onlime committed Oct 15, 2024
1 parent f009a0d commit 38230d5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion library/Zend/Pdf/Element.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@
* @package Zend_Pdf
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*
* @property mixed $value
*/
abstract class Zend_Pdf_Element
{
public $value;
public const TYPE_BOOL = 1;
public const TYPE_NUMERIC = 2;
public const TYPE_STRING = 3;
Expand Down
2 changes: 1 addition & 1 deletion library/Zend/Service/Rackspace/Files/Container.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@

require_once 'Zend/Service/Rackspace/Files.php';

/** @property mixed $service */
class Zend_Service_Rackspace_Files_Container
{
public $service;
public const ERROR_PARAM_FILE_CONSTRUCT = 'The Zend_Service_Rackspace_Files passed in construction is not valid';

public const ERROR_PARAM_ARRAY_CONSTRUCT = 'The array passed in construction is not valid';
Expand Down
3 changes: 2 additions & 1 deletion library/Zend/Soap/Client/Local.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,11 @@
* @category Zend
* @package Zend_Soap
* @subpackage Client
*
* @property Zend_Soap_Server $server
*/
class Zend_Soap_Client_Local extends Zend_Soap_Client
{
public $server;
/**
* Server object
*
Expand Down
3 changes: 2 additions & 1 deletion library/Zend/Wildfire/Plugin/FirePhp.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,11 @@
* @subpackage Plugin
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*
* @property array $objectFilters
*/
class Zend_Wildfire_Plugin_FirePhp implements Zend_Wildfire_Plugin_Interface
{
public $objectFilters;
/**
* Plain log style.
*/
Expand Down

0 comments on commit 38230d5

Please sign in to comment.