Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert undefined property declarations #453

Merged
merged 3 commits into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading