diff --git a/tests/Zend/Amf/Adobe/IntrospectorTest.php b/tests/Zend/Amf/Adobe/IntrospectorTest.php index 0c4a80546..bbccca8c3 100644 --- a/tests/Zend/Amf/Adobe/IntrospectorTest.php +++ b/tests/Zend/Amf/Adobe/IntrospectorTest.php @@ -40,6 +40,11 @@ */ class Zend_Amf_Adobe_IntrospectorTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Amf_Adobe_Introspector|mixed + */ + protected $introspector; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/Amf/AuthTest.php b/tests/Zend/Amf/AuthTest.php index f97410172..6e3a5435e 100644 --- a/tests/Zend/Amf/AuthTest.php +++ b/tests/Zend/Amf/AuthTest.php @@ -46,6 +46,11 @@ class Zend_Amf_AuthTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Acl|mixed + */ + protected $_acl; + /** * Enter description here... * @@ -295,6 +300,14 @@ public function authenticate() { class RightPassword extends Zend_Amf_Auth_Abstract { + /** + * @var mixed + */ + protected $_name; + /** + * @var mixed + */ + protected $_role; public function __construct($name, $role) { $this->_name = $name; diff --git a/tests/Zend/Amf/ResponseTest.php b/tests/Zend/Amf/ResponseTest.php index 70c455be1..ab4f00e47 100644 --- a/tests/Zend/Amf/ResponseTest.php +++ b/tests/Zend/Amf/ResponseTest.php @@ -46,6 +46,16 @@ */ class Zend_Amf_ResponseTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Amf_Value_MessageHeader|mixed + */ + protected $header1; + + /** + * @var \Zend_Amf_Value_MessageHeader|mixed + */ + protected $header2; + // The message response status code. public $responseURI = "/2/onResult"; diff --git a/tests/Zend/Amf/Value/MessageBodyTest.php b/tests/Zend/Amf/Value/MessageBodyTest.php index 9cdf90ce0..f351c5fb2 100644 --- a/tests/Zend/Amf/Value/MessageBodyTest.php +++ b/tests/Zend/Amf/Value/MessageBodyTest.php @@ -38,6 +38,11 @@ */ class Zend_Amf_Value_MessageBodyTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Amf_Value_MessageBody|mixed + */ + protected $body; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Application/Bootstrap/BootstrapTest.php b/tests/Zend/Application/Bootstrap/BootstrapTest.php index a781a4bc4..e68358917 100644 --- a/tests/Zend/Application/Bootstrap/BootstrapTest.php +++ b/tests/Zend/Application/Bootstrap/BootstrapTest.php @@ -39,6 +39,26 @@ */ class Zend_Application_Bootstrap_BootstrapTest extends PHPUnit_Framework_TestCase { + /** + * @var mixed[]|mixed + */ + protected $loaders; + + /** + * @var \Zend_Loader_Autoloader + */ + protected $autoloader; + + /** + * @var \Zend_Application|mixed + */ + protected $application; + + /** + * @var \Zend_Application_Bootstrap_Bootstrap|mixed + */ + protected $bootstrap; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/Cache/ClassFrontendTest.php b/tests/Zend/Cache/ClassFrontendTest.php index 3a88bb75b..0dc21201f 100644 --- a/tests/Zend/Cache/ClassFrontendTest.php +++ b/tests/Zend/Cache/ClassFrontendTest.php @@ -80,6 +80,16 @@ public function throwException() */ class Zend_Cache_ClassFrontendTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Cache_Backend_Test|mixed + */ + protected $_backend1; + + /** + * @var \Zend_Cache_Backend_Test|mixed + */ + protected $_backend2; + private $_instance1; private $_instance2; diff --git a/tests/Zend/Cache/CoreTest.php b/tests/Zend/Cache/CoreTest.php index 17d0d8216..acefb02ce 100644 --- a/tests/Zend/Cache/CoreTest.php +++ b/tests/Zend/Cache/CoreTest.php @@ -40,6 +40,11 @@ */ class Zend_Cache_CoreTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Cache_Backend_Test|mixed + */ + protected $_backend; + private $_instance; public function setUp() diff --git a/tests/Zend/Cache/FileFrontendTest.php b/tests/Zend/Cache/FileFrontendTest.php index e0328eef7..ee8a294a2 100644 --- a/tests/Zend/Cache/FileFrontendTest.php +++ b/tests/Zend/Cache/FileFrontendTest.php @@ -36,6 +36,10 @@ * @group Zend_Cache */ class Zend_Cache_FileFrontendTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Cache_Backend_Test|mixed + */ + protected $_backend; private $_instance1; private $_instance2; diff --git a/tests/Zend/Cache/FunctionFrontendTest.php b/tests/Zend/Cache/FunctionFrontendTest.php index f66b61dc5..bb39d2dab 100644 --- a/tests/Zend/Cache/FunctionFrontendTest.php +++ b/tests/Zend/Cache/FunctionFrontendTest.php @@ -56,6 +56,10 @@ public function foobar($param1, $param2) * @group Zend_Cache */ class Zend_Cache_FunctionFrontendTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Cache_Backend_Test|mixed + */ + protected $_backend; private $_instance; diff --git a/tests/Zend/Cache/ManagerTest.php b/tests/Zend/Cache/ManagerTest.php index 948a5b934..1d01bea87 100644 --- a/tests/Zend/Cache/ManagerTest.php +++ b/tests/Zend/Cache/ManagerTest.php @@ -31,6 +31,12 @@ */ class Zend_Cache_ManagerTest extends PHPUnit_Framework_TestCase { + protected $_cache_dir; + + /** + * @var \Zend_Cache_Core|null|mixed + */ + protected $_cache; public function setUp() { diff --git a/tests/Zend/Cache/OutputFrontendTest.php b/tests/Zend/Cache/OutputFrontendTest.php index ace7599da..53e0364be 100644 --- a/tests/Zend/Cache/OutputFrontendTest.php +++ b/tests/Zend/Cache/OutputFrontendTest.php @@ -36,6 +36,10 @@ * @group Zend_Cache */ class Zend_Cache_OutputFrontendTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Cache_Backend_Test|mixed + */ + protected $_backend; private $_instance; diff --git a/tests/Zend/Cache/PageFrontendTest.php b/tests/Zend/Cache/PageFrontendTest.php index a0ffe500e..379a9533d 100644 --- a/tests/Zend/Cache/PageFrontendTest.php +++ b/tests/Zend/Cache/PageFrontendTest.php @@ -36,6 +36,10 @@ * @group Zend_Cache */ class Zend_Cache_PageFrontendTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Cache_Backend_Test|mixed + */ + protected $_backend; private $_instance; diff --git a/tests/Zend/Captcha/DumbTest.php b/tests/Zend/Captcha/DumbTest.php index 24c3f2427..20e608601 100644 --- a/tests/Zend/Captcha/DumbTest.php +++ b/tests/Zend/Captcha/DumbTest.php @@ -38,6 +38,16 @@ */ class Zend_Captcha_DumbTest extends PHPUnit_Framework_TestCase { + protected $word; + + /** + * @var \Zend_Form_Element_Captcha|mixed + */ + protected $element; + /** + * @var \Zend_Captcha_Adapter|mixed + */ + protected $captcha; /** * Runs the test methods of this class. * diff --git a/tests/Zend/Captcha/FigletTest.php b/tests/Zend/Captcha/FigletTest.php index 5dff9152b..73cdfbee2 100644 --- a/tests/Zend/Captcha/FigletTest.php +++ b/tests/Zend/Captcha/FigletTest.php @@ -39,6 +39,26 @@ */ class Zend_Captcha_FigletTest extends PHPUnit_Framework_TestCase { + /** + * @var mixed|string + */ + protected $word; + + /** + * @var \Zend_Form_Element_Captcha|mixed + */ + protected $element; + + /** + * @var \Zend_Captcha_Adapter|mixed + */ + protected $captcha; + + /** + * @var string + */ + protected $id; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Captcha/ImageTest.php b/tests/Zend/Captcha/ImageTest.php index 3f7a89409..bdfa7e99c 100644 --- a/tests/Zend/Captcha/ImageTest.php +++ b/tests/Zend/Captcha/ImageTest.php @@ -38,6 +38,31 @@ */ class Zend_Captcha_ImageTest extends PHPUnit_Framework_TestCase { + /** + * @var mixed|string + */ + protected $word; + + /** + * @var string|mixed + */ + protected $testDir; + + /** + * @var \Zend_Form_Element_Captcha|mixed + */ + protected $element; + + /** + * @var \Zend_Captcha_Adapter|mixed + */ + protected $captcha; + + /** + * @var string + */ + protected $id; + protected $_tmpDir; /** diff --git a/tests/Zend/Captcha/ReCaptchaTest.php b/tests/Zend/Captcha/ReCaptchaTest.php index 6a9a6500b..ddb5feb33 100644 --- a/tests/Zend/Captcha/ReCaptchaTest.php +++ b/tests/Zend/Captcha/ReCaptchaTest.php @@ -38,6 +38,18 @@ */ class Zend_Captcha_ReCaptchaTest extends PHPUnit_Framework_TestCase { + protected $word; + + /** + * @var \Zend_Form_Element_Captcha|mixed + */ + protected $element; + + /** + * @var \Zend_Captcha_Adapter + */ + protected $captcha; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Config/IniTest.php b/tests/Zend/Config/IniTest.php index 1b2738255..9832954f8 100644 --- a/tests/Zend/Config/IniTest.php +++ b/tests/Zend/Config/IniTest.php @@ -35,6 +35,31 @@ */ class Zend_Config_IniTest extends PHPUnit_Framework_TestCase { + /** + * @var string|mixed + */ + protected $_iniFileMultipleInheritanceConfig; + + /** + * @var string|mixed + */ + protected $_iniFileSeparatorConfig; + + /** + * @var string + */ + protected $_nonReadableConfig; + + /** + * @var string|mixed + */ + protected $_iniFileNoSectionsConfig; + + /** + * @var string|mixed + */ + protected $_iniFileInvalid; + protected $_iniFileConfig; protected $_iniFileAllSectionsConfig; protected $_iniFileCircularConfig; diff --git a/tests/Zend/Config/XmlTest.php b/tests/Zend/Config/XmlTest.php index 1e75bdca1..4f5e6a1e2 100644 --- a/tests/Zend/Config/XmlTest.php +++ b/tests/Zend/Config/XmlTest.php @@ -35,6 +35,36 @@ */ class Zend_Config_XmlTest extends PHPUnit_Framework_TestCase { + /** + * @var string|mixed + */ + protected $_xmlFileTopLevelStringConfig; + + /** + * @var string|mixed + */ + protected $_xmlFileOneTopLevelStringConfig; + + /** + * @var string + */ + protected $_nonReadableConfig; + + /** + * @var string|mixed + */ + protected $_xmlFileSameNameKeysConfig; + + /** + * @var string|mixed + */ + protected $_xmlFileShortParamsOneConfig; + + /** + * @var string|mixed + */ + protected $_xmlFileShortParamsTwoConfig; + protected $_xmlFileConfig; protected $_xmlFileAllSectionsConfig; protected $_xmlFileCircularConfig; diff --git a/tests/Zend/Config/YamlTest.php b/tests/Zend/Config/YamlTest.php index 9cbfd9406..2d240fa7f 100644 --- a/tests/Zend/Config/YamlTest.php +++ b/tests/Zend/Config/YamlTest.php @@ -35,6 +35,76 @@ */ class Zend_Config_YamlTest extends PHPUnit_Framework_TestCase { + /** + * @var string|mixed + */ + protected $_iniFileConfig; + + /** + * @var string|mixed + */ + protected $_iniFileAllSectionsConfig; + + /** + * @var string|mixed + */ + protected $_iniFileCircularConfig; + + /** + * @var string + */ + protected $_nonReadableConfig; + + /** + * @var string|mixed + */ + protected $_iniFileInvalid; + + /** + * @var string|mixed + */ + protected $_iniFileSameNameKeysConfig; + + /** + * @var string|mixed + */ + protected $_badIndentationConfig; + + /** + * @var string|mixed + */ + protected $_booleansConfig; + + /** + * @var string|mixed + */ + protected $_constantsConfig; + + /** + * @var string|mixed + */ + protected $_yamlInlineCommentsConfig; + + /** + * @var string|mixed + */ + protected $_yamlIndentedCommentsConfig; + + /** + * @var string|mixed + */ + protected $_yamlListConstantsConfig; + + /** + * @var string|mixed + */ + protected $_listBooleansConfig; + + /** + * @var string|mixed + */ + protected $_yamlSingleQuotedString; + public function setUp() { $this->_iniFileConfig = dirname(__FILE__) . '/_files/config.yaml'; diff --git a/tests/Zend/Controller/Action/Helper/AjaxContextTest.php b/tests/Zend/Controller/Action/Helper/AjaxContextTest.php index 9821a511f..6dc2e367d 100644 --- a/tests/Zend/Controller/Action/Helper/AjaxContextTest.php +++ b/tests/Zend/Controller/Action/Helper/AjaxContextTest.php @@ -52,6 +52,46 @@ */ class Zend_Controller_Action_Helper_AjaxContextTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Controller_Front|mixed + */ + protected $front; + + /** + * @var \Zend_Layout|mixed + */ + protected $layout; + + /** + * @var \Zend_Controller_Action_Helper_AjaxContext|mixed + */ + protected $helper; + + /** + * @var \Zend_Controller_Request_Http|mixed + */ + protected $request; + + /** + * @var \Zend_Controller_Response_Cli|mixed + */ + protected $response; + + /** + * @var \Zend_VIew|mixed + */ + protected $view; + + /** + * @var \Zend_Controller_Action_Helper_Abstract|mixed + */ + protected $viewRenderer; + + /** + * @var \Zend_Controller_Action_Helper_AjaxContextTestController|mixed + */ + protected $controller; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Controller/Action/Helper/AutoCompleteTest.php b/tests/Zend/Controller/Action/Helper/AutoCompleteTest.php index d5e758bc6..339f1c53e 100644 --- a/tests/Zend/Controller/Action/Helper/AutoCompleteTest.php +++ b/tests/Zend/Controller/Action/Helper/AutoCompleteTest.php @@ -51,6 +51,31 @@ */ class Zend_Controller_Action_Helper_AutoCompleteTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Controller_Request_Http|mixed + */ + protected $request; + + /** + * @var \Zend_Controller_Response_Cli|mixed + */ + protected $response; + + /** + * @var \Zend_Controller_Front|mixed + */ + protected $front; + + /** + * @var \Zend_Controller_Action_Helper_Abstract|mixed + */ + protected $viewRenderer; + + /** + * @var \Zend_Layout|mixed + */ + protected $layout; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Controller/Action/Helper/CacheTest.php b/tests/Zend/Controller/Action/Helper/CacheTest.php index 896147068..306a146c7 100644 --- a/tests/Zend/Controller/Action/Helper/CacheTest.php +++ b/tests/Zend/Controller/Action/Helper/CacheTest.php @@ -18,7 +18,14 @@ */ class Zend_Controller_Action_Helper_CacheTest extends PHPUnit_Framework_TestCase { - + /** + * @var \Zend_Controller_Front|mixed + */ + protected $front; + /** + * @var \Zend_Controller_Request_Http|mixed + */ + protected $request; protected $_requestUriOld; /** diff --git a/tests/Zend/Controller/Action/Helper/ContextSwitchTest.php b/tests/Zend/Controller/Action/Helper/ContextSwitchTest.php index dafb36c61..9318b76c9 100644 --- a/tests/Zend/Controller/Action/Helper/ContextSwitchTest.php +++ b/tests/Zend/Controller/Action/Helper/ContextSwitchTest.php @@ -53,6 +53,46 @@ */ class Zend_Controller_Action_Helper_ContextSwitchTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Controller_Front|mixed + */ + protected $front; + + /** + * @var \Zend_Layout|mixed + */ + protected $layout; + + /** + * @var \Zend_Controller_Action_Helper_ContextSwitch|mixed + */ + protected $helper; + + /** + * @var \Zend_Controller_Request_Http|mixed + */ + protected $request; + + /** + * @var \Zend_Controller_Response_Cli|mixed + */ + protected $response; + + /** + * @var \Zend_View|mixed + */ + protected $view; + + /** + * @var \Zend_Controller_Action_Helper_Abstract|mixed + */ + protected $viewRenderer; + + /** + * @var \Zend_Controller_Action_Helper_ContextSwitchTestController|mixed + */ + protected $controller; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Controller/Action/Helper/JsonTest.php b/tests/Zend/Controller/Action/Helper/JsonTest.php index f35fec37c..79591a6f6 100644 --- a/tests/Zend/Controller/Action/Helper/JsonTest.php +++ b/tests/Zend/Controller/Action/Helper/JsonTest.php @@ -48,6 +48,19 @@ */ class Zend_Controller_Action_Helper_JsonTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Controller_Response_Http|mixed + */ + protected $response; + + /** + * @var \Zend_Controller_Action_Helper_ViewRenderer|mixed + */ + protected $viewRenderer; + /** + * @var \Zend_Controller_Action_Helper_Json|mixed + */ + protected $helper; /** * Runs the test methods of this class. * diff --git a/tests/Zend/Controller/Action/Helper/RedirectorTest.php b/tests/Zend/Controller/Action/Helper/RedirectorTest.php index b07bfd6d1..ef50357dd 100644 --- a/tests/Zend/Controller/Action/Helper/RedirectorTest.php +++ b/tests/Zend/Controller/Action/Helper/RedirectorTest.php @@ -46,6 +46,16 @@ */ class Zend_Controller_Action_Helper_RedirectorTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Controller_Router_Interface|mixed + */ + protected $router; + + /** + * @var array|mixed + */ + protected $_server; + /** * @var Zend_Controller_Action_Helper_Redirector */ diff --git a/tests/Zend/Controller/Action/Helper/UrlTest.php b/tests/Zend/Controller/Action/Helper/UrlTest.php index ee338478f..1a56b869d 100644 --- a/tests/Zend/Controller/Action/Helper/UrlTest.php +++ b/tests/Zend/Controller/Action/Helper/UrlTest.php @@ -44,6 +44,16 @@ */ class Zend_Controller_Action_Helper_UrlTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Controller_Front|mixed + */ + protected $front; + + /** + * @var \Zend_Controller_Action_Helper_Url|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Controller/ActionTest.php b/tests/Zend/Controller/ActionTest.php index a9b9b45e5..b8b97795d 100644 --- a/tests/Zend/Controller/ActionTest.php +++ b/tests/Zend/Controller/ActionTest.php @@ -43,6 +43,11 @@ */ class Zend_Controller_ActionTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Controller_ActionTest_TestController|mixed + */ + protected $_controller; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Controller/Dispatcher/StandardTest.php b/tests/Zend/Controller/Dispatcher/StandardTest.php index f2cbb4074..437eab029 100644 --- a/tests/Zend/Controller/Dispatcher/StandardTest.php +++ b/tests/Zend/Controller/Dispatcher/StandardTest.php @@ -43,6 +43,8 @@ */ class Zend_Controller_Dispatcher_StandardTest extends PHPUnit_Framework_TestCase { + protected $error; + protected $_dispatcher; /** diff --git a/tests/Zend/Controller/Request/HttpTestCaseTest.php b/tests/Zend/Controller/Request/HttpTestCaseTest.php index d03b872eb..d4b9350a4 100644 --- a/tests/Zend/Controller/Request/HttpTestCaseTest.php +++ b/tests/Zend/Controller/Request/HttpTestCaseTest.php @@ -41,6 +41,11 @@ */ class Zend_Controller_Request_HttpTestCaseTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Controller_Request_HttpTestCase|mixed + */ + protected $request; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Controller/Response/HttpTestCaseTest.php b/tests/Zend/Controller/Response/HttpTestCaseTest.php index 5a82a3ec5..a2c8010a5 100644 --- a/tests/Zend/Controller/Response/HttpTestCaseTest.php +++ b/tests/Zend/Controller/Response/HttpTestCaseTest.php @@ -41,6 +41,11 @@ */ class Zend_Controller_Response_HttpTestCaseTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Controller_Response_HttpTestCase|mixed + */ + protected $response; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Crypt/Rsa/RsaTest.php b/tests/Zend/Crypt/Rsa/RsaTest.php index 9fe776975..67ff37c17 100644 --- a/tests/Zend/Crypt/Rsa/RsaTest.php +++ b/tests/Zend/Crypt/Rsa/RsaTest.php @@ -33,6 +33,20 @@ */ class Zend_Crypt_RsaTest extends PHPUnit_Framework_TestCase { + /** + * @var string|mixed + */ + protected $_testPemStringPublic; + + /** + * @var string|mixed + */ + protected $_testCertificateString; + + /** + * @var string|mixed + */ + protected $_testCertificatePath; protected $_testPemString = null; diff --git a/tests/Zend/CurrencyTest.php b/tests/Zend/CurrencyTest.php index 3da4dd9ef..11b02f5aa 100644 --- a/tests/Zend/CurrencyTest.php +++ b/tests/Zend/CurrencyTest.php @@ -37,6 +37,10 @@ */ class Zend_CurrencyTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Cache_Core|mixed + */ + protected $_cache; public function setUp() { diff --git a/tests/Zend/Date/DateObjectTest.php b/tests/Zend/Date/DateObjectTest.php index 94f32c97f..3662e6f75 100644 --- a/tests/Zend/Date/DateObjectTest.php +++ b/tests/Zend/Date/DateObjectTest.php @@ -35,6 +35,15 @@ */ class Zend_Date_DateObjectTest extends PHPUnit_Framework_TestCase { + /** + * @var string|mixed + */ + protected $originalTimezone; + + /** + * @var \Zend_Cache_Core|mixed + */ + protected $_cache; public function setUp() { diff --git a/tests/Zend/DateTest.php b/tests/Zend/DateTest.php index 36c758f8c..5eed5dea4 100644 --- a/tests/Zend/DateTest.php +++ b/tests/Zend/DateTest.php @@ -55,6 +55,10 @@ */ class Zend_DateTest extends PHPUnit_Framework_TestCase { + /** + * @var string|mixed + */ + protected $originalTimezone; private $_cache = null; private $_orig = array(); diff --git a/tests/Zend/Dojo/BuildLayerTest.php b/tests/Zend/Dojo/BuildLayerTest.php index 14c5ecb00..0977d7373 100644 --- a/tests/Zend/Dojo/BuildLayerTest.php +++ b/tests/Zend/Dojo/BuildLayerTest.php @@ -39,6 +39,11 @@ */ class Zend_Dojo_BuildLayerTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View|mixed + */ + protected $view; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/Dojo/Form/Decorator/AccordionContainerTest.php b/tests/Zend/Dojo/Form/Decorator/AccordionContainerTest.php index 623637b97..b6917a8d5 100644 --- a/tests/Zend/Dojo/Form/Decorator/AccordionContainerTest.php +++ b/tests/Zend/Dojo/Form/Decorator/AccordionContainerTest.php @@ -53,6 +53,18 @@ */ class Zend_Dojo_Form_Decorator_AccordionContainerTest extends PHPUnit_Framework_TestCase { + protected $view; + + /** + * @var \Zend_Dojo_Form_Decorator_AccordionContainer|mixed + */ + protected $decorator; + + /** + * @var \Zend_Dojo_Form + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Decorator/AccordionPaneTest.php b/tests/Zend/Dojo/Form/Decorator/AccordionPaneTest.php index 22d28e07b..ae79bf298 100644 --- a/tests/Zend/Dojo/Form/Decorator/AccordionPaneTest.php +++ b/tests/Zend/Dojo/Form/Decorator/AccordionPaneTest.php @@ -53,6 +53,15 @@ */ class Zend_Dojo_Form_Decorator_AccordionPaneTest extends PHPUnit_Framework_TestCase { + protected $view; + + /** + * @var \Zend_Dojo_Form_Decorator_AccordionPane|mixed + */ + protected $decorator; + + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Decorator/BorderContainerTest.php b/tests/Zend/Dojo/Form/Decorator/BorderContainerTest.php index 26f3e69f2..de00d357d 100644 --- a/tests/Zend/Dojo/Form/Decorator/BorderContainerTest.php +++ b/tests/Zend/Dojo/Form/Decorator/BorderContainerTest.php @@ -53,6 +53,18 @@ */ class Zend_Dojo_Form_Decorator_BorderContainerTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Decorator_BorderContainer|mixed + */ + protected $decorator; + + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Decorator/DijitContainerTest.php b/tests/Zend/Dojo/Form/Decorator/DijitContainerTest.php index 2d8c68347..d8cd73592 100644 --- a/tests/Zend/Dojo/Form/Decorator/DijitContainerTest.php +++ b/tests/Zend/Dojo/Form/Decorator/DijitContainerTest.php @@ -56,6 +56,23 @@ */ class Zend_Dojo_Form_Decorator_DijitContainerTest extends PHPUnit_Framework_TestCase { + /** + * @var mixed[]|string[]|mixed + */ + protected $errors; + + protected $view; + + /** + * @var \Zend_Dojo_Form_Decorator_ContentPane|mixed + */ + protected $decorator; + + /** + * @var \Zend_Dojo_Form + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Decorator/DijitElementTest.php b/tests/Zend/Dojo/Form/Decorator/DijitElementTest.php index 008772c5b..2b3d0da5f 100644 --- a/tests/Zend/Dojo/Form/Decorator/DijitElementTest.php +++ b/tests/Zend/Dojo/Form/Decorator/DijitElementTest.php @@ -53,6 +53,26 @@ */ class Zend_Dojo_Form_Decorator_DijitElementTest extends PHPUnit_Framework_TestCase { + /** + * @var mixed[]|string[]|mixed + */ + protected $errors; + + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Decorator_DijitElement|mixed + */ + protected $decorator; + + /** + * @var \Zend_Dojo_Form_Element_TextBox + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Decorator/DijitFormTest.php b/tests/Zend/Dojo/Form/Decorator/DijitFormTest.php index b0fade715..b93ba1f2b 100644 --- a/tests/Zend/Dojo/Form/Decorator/DijitFormTest.php +++ b/tests/Zend/Dojo/Form/Decorator/DijitFormTest.php @@ -53,6 +53,21 @@ */ class Zend_Dojo_Form_Decorator_DijitFormTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Decorator_DijitForm|mixed + */ + protected $decorator; + + /** + * @var \Zend_Dojo_Form + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Decorator/SplitContainerTest.php b/tests/Zend/Dojo/Form/Decorator/SplitContainerTest.php index 32fd1f671..0054a8a05 100644 --- a/tests/Zend/Dojo/Form/Decorator/SplitContainerTest.php +++ b/tests/Zend/Dojo/Form/Decorator/SplitContainerTest.php @@ -53,6 +53,20 @@ */ class Zend_Dojo_Form_Decorator_SplitContainerTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Decorator_SplitContainer|mixed + */ + protected $decorator; + + /** + * @var \Zend_Dojo_Form + */ + protected $element; /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Decorator/StackContainerTest.php b/tests/Zend/Dojo/Form/Decorator/StackContainerTest.php index f8611f82b..f81fdac59 100644 --- a/tests/Zend/Dojo/Form/Decorator/StackContainerTest.php +++ b/tests/Zend/Dojo/Form/Decorator/StackContainerTest.php @@ -53,6 +53,21 @@ */ class Zend_Dojo_Form_Decorator_StackContainerTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Decorator_StackContainer|mixed + */ + protected $decorator; + + /** + * @var \Zend_Dojo_Form + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Decorator/TabContainerTest.php b/tests/Zend/Dojo/Form/Decorator/TabContainerTest.php index 67eec9d40..9b65eccec 100644 --- a/tests/Zend/Dojo/Form/Decorator/TabContainerTest.php +++ b/tests/Zend/Dojo/Form/Decorator/TabContainerTest.php @@ -53,6 +53,21 @@ */ class Zend_Dojo_Form_Decorator_TabContainerTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Decorator_TabContainer|mixed + */ + protected $decorator; + + /** + * @var \Zend_Dojo_Form + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/ButtonTest.php b/tests/Zend/Dojo/Form/Element/ButtonTest.php index a5bd1072e..84b9fcf80 100644 --- a/tests/Zend/Dojo/Form/Element/ButtonTest.php +++ b/tests/Zend/Dojo/Form/Element/ButtonTest.php @@ -53,6 +53,16 @@ */ class Zend_Dojo_Form_Element_ButtonTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Element_Button + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/CheckBoxTest.php b/tests/Zend/Dojo/Form/Element/CheckBoxTest.php index 89a120060..7f7936a1a 100644 --- a/tests/Zend/Dojo/Form/Element/CheckBoxTest.php +++ b/tests/Zend/Dojo/Form/Element/CheckBoxTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_Form_Element_CheckBoxTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Element_CheckBox + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/ComboBoxTest.php b/tests/Zend/Dojo/Form/Element/ComboBoxTest.php index 1049b874e..9a4554ae3 100644 --- a/tests/Zend/Dojo/Form/Element/ComboBoxTest.php +++ b/tests/Zend/Dojo/Form/Element/ComboBoxTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_Form_Element_ComboBoxTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Element_ComboBox + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/CurrencyTextBoxTest.php b/tests/Zend/Dojo/Form/Element/CurrencyTextBoxTest.php index dd475906e..5b3f51bf4 100644 --- a/tests/Zend/Dojo/Form/Element/CurrencyTextBoxTest.php +++ b/tests/Zend/Dojo/Form/Element/CurrencyTextBoxTest.php @@ -50,6 +50,15 @@ */ class Zend_Dojo_Form_Element_CurrencyTextBoxTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var Zend_Dojo_Form_Element_CurrencyTextBox + */ + protected $element; /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/DateTextBoxTest.php b/tests/Zend/Dojo/Form/Element/DateTextBoxTest.php index 5aa14d732..9a606e9e1 100644 --- a/tests/Zend/Dojo/Form/Element/DateTextBoxTest.php +++ b/tests/Zend/Dojo/Form/Element/DateTextBoxTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_Form_Element_DateTextBoxTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Element_DateTextBox + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/DijitTest.php b/tests/Zend/Dojo/Form/Element/DijitTest.php index f3603986c..059a064ef 100644 --- a/tests/Zend/Dojo/Form/Element/DijitTest.php +++ b/tests/Zend/Dojo/Form/Element/DijitTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_Form_Element_DijitTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Element_TextBox + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/EditorTest.php b/tests/Zend/Dojo/Form/Element/EditorTest.php index 0a24b4ec4..af91ee6b2 100644 --- a/tests/Zend/Dojo/Form/Element/EditorTest.php +++ b/tests/Zend/Dojo/Form/Element/EditorTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_Form_Element_EditorTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Element_TextBox + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/FilteringSelectTest.php b/tests/Zend/Dojo/Form/Element/FilteringSelectTest.php index 986f07b59..5ade9524c 100644 --- a/tests/Zend/Dojo/Form/Element/FilteringSelectTest.php +++ b/tests/Zend/Dojo/Form/Element/FilteringSelectTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_Form_Element_FilteringSelectTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Element_FilteringSelect + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/HorizontalSliderTest.php b/tests/Zend/Dojo/Form/Element/HorizontalSliderTest.php index ff579986c..08d68690e 100644 --- a/tests/Zend/Dojo/Form/Element/HorizontalSliderTest.php +++ b/tests/Zend/Dojo/Form/Element/HorizontalSliderTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_Form_Element_HorizontalSliderTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Element_HorizontalSlider + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/NumberSpinnerTest.php b/tests/Zend/Dojo/Form/Element/NumberSpinnerTest.php index 193c3144f..0d047340b 100644 --- a/tests/Zend/Dojo/Form/Element/NumberSpinnerTest.php +++ b/tests/Zend/Dojo/Form/Element/NumberSpinnerTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_Form_Element_NumberSpinnerTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Element_NumberSpinner + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/NumberTextBoxTest.php b/tests/Zend/Dojo/Form/Element/NumberTextBoxTest.php index 907deef94..78dd7fea8 100644 --- a/tests/Zend/Dojo/Form/Element/NumberTextBoxTest.php +++ b/tests/Zend/Dojo/Form/Element/NumberTextBoxTest.php @@ -49,6 +49,16 @@ */ class Zend_Dojo_Form_Element_NumberTextBoxTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Element_NumberTextBox + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/PasswordTextBoxTest.php b/tests/Zend/Dojo/Form/Element/PasswordTextBoxTest.php index a4be72dac..ea7ed0bf9 100644 --- a/tests/Zend/Dojo/Form/Element/PasswordTextBoxTest.php +++ b/tests/Zend/Dojo/Form/Element/PasswordTextBoxTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_Form_Element_PasswordTextBoxTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Element_PasswordTextBox + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/RadioButtonTest.php b/tests/Zend/Dojo/Form/Element/RadioButtonTest.php index 34e582d21..88a4e4236 100644 --- a/tests/Zend/Dojo/Form/Element/RadioButtonTest.php +++ b/tests/Zend/Dojo/Form/Element/RadioButtonTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_Form_Element_RadioButtonTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Element_RadioButton + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/SimpleTextareaTest.php b/tests/Zend/Dojo/Form/Element/SimpleTextareaTest.php index cbdce94d9..0e4e5dca7 100644 --- a/tests/Zend/Dojo/Form/Element/SimpleTextareaTest.php +++ b/tests/Zend/Dojo/Form/Element/SimpleTextareaTest.php @@ -53,6 +53,16 @@ */ class Zend_Dojo_Form_Element_SimpleTextareaTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Element_SimpleTextarea + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/SubmitButtonTest.php b/tests/Zend/Dojo/Form/Element/SubmitButtonTest.php index ca1b600a1..4afa58585 100644 --- a/tests/Zend/Dojo/Form/Element/SubmitButtonTest.php +++ b/tests/Zend/Dojo/Form/Element/SubmitButtonTest.php @@ -53,6 +53,16 @@ */ class Zend_Dojo_Form_Element_SubmitButtonTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Element_SubmitButton + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/TextBoxTest.php b/tests/Zend/Dojo/Form/Element/TextBoxTest.php index 48726ac6e..52d5a3638 100644 --- a/tests/Zend/Dojo/Form/Element/TextBoxTest.php +++ b/tests/Zend/Dojo/Form/Element/TextBoxTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_Form_Element_TextBoxTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Element_TextBox + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/TextareaTest.php b/tests/Zend/Dojo/Form/Element/TextareaTest.php index 57ff34cd7..97cec7888 100644 --- a/tests/Zend/Dojo/Form/Element/TextareaTest.php +++ b/tests/Zend/Dojo/Form/Element/TextareaTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_Form_Element_TextareaTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Element_Textarea + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/TimeTextBoxTest.php b/tests/Zend/Dojo/Form/Element/TimeTextBoxTest.php index b0e185ad2..d338d60a2 100644 --- a/tests/Zend/Dojo/Form/Element/TimeTextBoxTest.php +++ b/tests/Zend/Dojo/Form/Element/TimeTextBoxTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_Form_Element_TimeTextBoxTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Element_TimeTextBox + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/ValidationTextBoxTest.php b/tests/Zend/Dojo/Form/Element/ValidationTextBoxTest.php index 9bc0af56b..e2d930ded 100644 --- a/tests/Zend/Dojo/Form/Element/ValidationTextBoxTest.php +++ b/tests/Zend/Dojo/Form/Element/ValidationTextBoxTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_Form_Element_ValidationTextBoxTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Element_ValidationTextBox + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/Element/VerticalSliderTest.php b/tests/Zend/Dojo/Form/Element/VerticalSliderTest.php index be51385df..2704f758c 100644 --- a/tests/Zend/Dojo/Form/Element/VerticalSliderTest.php +++ b/tests/Zend/Dojo/Form/Element/VerticalSliderTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_Form_Element_VerticalSliderTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_Form_Element_VerticalSlider + */ + protected $element; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/FormTest.php b/tests/Zend/Dojo/Form/FormTest.php index 4e8d8ec27..0b3a2e0b4 100644 --- a/tests/Zend/Dojo/Form/FormTest.php +++ b/tests/Zend/Dojo/Form/FormTest.php @@ -44,6 +44,11 @@ */ class Zend_Dojo_Form_FormTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Dojo_Form|mixed + */ + protected $form; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/Form/SubFormTest.php b/tests/Zend/Dojo/Form/SubFormTest.php index 2ddb3dc63..87c923137 100644 --- a/tests/Zend/Dojo/Form/SubFormTest.php +++ b/tests/Zend/Dojo/Form/SubFormTest.php @@ -44,6 +44,11 @@ */ class Zend_Dojo_Form_SubFormTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Dojo_Form_SubForm|mixed + */ + protected $form; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/AccordionContainerTest.php b/tests/Zend/Dojo/View/Helper/AccordionContainerTest.php index 0cf736933..44d67fba1 100644 --- a/tests/Zend/Dojo/View/Helper/AccordionContainerTest.php +++ b/tests/Zend/Dojo/View/Helper/AccordionContainerTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_AccordionContainerTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_AccordionContainer|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/AccordionPaneTest.php b/tests/Zend/Dojo/View/Helper/AccordionPaneTest.php index fde4b7baf..e2e6958a9 100644 --- a/tests/Zend/Dojo/View/Helper/AccordionPaneTest.php +++ b/tests/Zend/Dojo/View/Helper/AccordionPaneTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_AccordionPaneTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_AccordionPane|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/BorderContainerTest.php b/tests/Zend/Dojo/View/Helper/BorderContainerTest.php index d58f3ee27..0772fdd97 100644 --- a/tests/Zend/Dojo/View/Helper/BorderContainerTest.php +++ b/tests/Zend/Dojo/View/Helper/BorderContainerTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_BorderContainerTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_BorderContainer|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/ButtonTest.php b/tests/Zend/Dojo/View/Helper/ButtonTest.php index 276c94f30..f63ebc0d7 100644 --- a/tests/Zend/Dojo/View/Helper/ButtonTest.php +++ b/tests/Zend/Dojo/View/Helper/ButtonTest.php @@ -50,6 +50,15 @@ */ class Zend_Dojo_View_Helper_ButtonTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_Button|mixed + */ + protected $helper; /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/CheckBoxTest.php b/tests/Zend/Dojo/View/Helper/CheckBoxTest.php index 7bc34231a..752c398cb 100644 --- a/tests/Zend/Dojo/View/Helper/CheckBoxTest.php +++ b/tests/Zend/Dojo/View/Helper/CheckBoxTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_CheckBoxTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_CheckBox|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/ComboBoxTest.php b/tests/Zend/Dojo/View/Helper/ComboBoxTest.php index 7b1b15dae..4c8fe745f 100644 --- a/tests/Zend/Dojo/View/Helper/ComboBoxTest.php +++ b/tests/Zend/Dojo/View/Helper/ComboBoxTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_ComboBoxTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_ComboBox|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/ContentPaneTest.php b/tests/Zend/Dojo/View/Helper/ContentPaneTest.php index 6c4605e76..2111c4a00 100644 --- a/tests/Zend/Dojo/View/Helper/ContentPaneTest.php +++ b/tests/Zend/Dojo/View/Helper/ContentPaneTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_ContentPaneTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_ContentPane|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/CurrencyTextBoxTest.php b/tests/Zend/Dojo/View/Helper/CurrencyTextBoxTest.php index c130e11e3..bb3097e78 100644 --- a/tests/Zend/Dojo/View/Helper/CurrencyTextBoxTest.php +++ b/tests/Zend/Dojo/View/Helper/CurrencyTextBoxTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_CurrencyTextBoxTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_CurrencyTextBox|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/CustomDijitTest.php b/tests/Zend/Dojo/View/Helper/CustomDijitTest.php index 4d4daec11..afc9437dd 100644 --- a/tests/Zend/Dojo/View/Helper/CustomDijitTest.php +++ b/tests/Zend/Dojo/View/Helper/CustomDijitTest.php @@ -50,6 +50,11 @@ */ class Zend_Dojo_View_Helper_CustomDijitTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/DateTextBoxTest.php b/tests/Zend/Dojo/View/Helper/DateTextBoxTest.php index 323c5f8df..188666e2b 100644 --- a/tests/Zend/Dojo/View/Helper/DateTextBoxTest.php +++ b/tests/Zend/Dojo/View/Helper/DateTextBoxTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_DateTextBoxTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_DateTextBox|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/DojoTest.php b/tests/Zend/Dojo/View/Helper/DojoTest.php index 2d748ed06..d6caecd02 100644 --- a/tests/Zend/Dojo/View/Helper/DojoTest.php +++ b/tests/Zend/Dojo/View/Helper/DojoTest.php @@ -50,6 +50,11 @@ */ class Zend_Dojo_View_Helper_DojoTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + /** * @var Zend_Dojo_View_Helper_Dojo_Container */ diff --git a/tests/Zend/Dojo/View/Helper/EditorTest.php b/tests/Zend/Dojo/View/Helper/EditorTest.php index d023d4001..9b2eaaf11 100644 --- a/tests/Zend/Dojo/View/Helper/EditorTest.php +++ b/tests/Zend/Dojo/View/Helper/EditorTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_EditorTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_Editor|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/FilteringSelectTest.php b/tests/Zend/Dojo/View/Helper/FilteringSelectTest.php index e9e87c03e..d3c3e92da 100644 --- a/tests/Zend/Dojo/View/Helper/FilteringSelectTest.php +++ b/tests/Zend/Dojo/View/Helper/FilteringSelectTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_FilteringSelectTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_FilteringSelect|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/FormTest.php b/tests/Zend/Dojo/View/Helper/FormTest.php index 417f8b1ce..8e0128a61 100644 --- a/tests/Zend/Dojo/View/Helper/FormTest.php +++ b/tests/Zend/Dojo/View/Helper/FormTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_FormTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_Form|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/HorizontalSliderTest.php b/tests/Zend/Dojo/View/Helper/HorizontalSliderTest.php index 4b7057527..e23b0f445 100644 --- a/tests/Zend/Dojo/View/Helper/HorizontalSliderTest.php +++ b/tests/Zend/Dojo/View/Helper/HorizontalSliderTest.php @@ -56,6 +56,16 @@ */ class Zend_Dojo_View_Helper_HorizontalSliderTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_HorizontalSlider|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/NumberSpinnerTest.php b/tests/Zend/Dojo/View/Helper/NumberSpinnerTest.php index 0885e3a0e..bb68a2835 100644 --- a/tests/Zend/Dojo/View/Helper/NumberSpinnerTest.php +++ b/tests/Zend/Dojo/View/Helper/NumberSpinnerTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_NumberSpinnerTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_NumberSpinner|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/NumberTextBoxTest.php b/tests/Zend/Dojo/View/Helper/NumberTextBoxTest.php index 0c6f443e2..c691a8ec3 100644 --- a/tests/Zend/Dojo/View/Helper/NumberTextBoxTest.php +++ b/tests/Zend/Dojo/View/Helper/NumberTextBoxTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_NumberTextBoxTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_NumberTextBox|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/PasswordTextBoxTest.php b/tests/Zend/Dojo/View/Helper/PasswordTextBoxTest.php index 7ccb06d25..1ddb01b1b 100644 --- a/tests/Zend/Dojo/View/Helper/PasswordTextBoxTest.php +++ b/tests/Zend/Dojo/View/Helper/PasswordTextBoxTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_PasswordTextBoxTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_PasswordTextBox|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/RadioButtonTest.php b/tests/Zend/Dojo/View/Helper/RadioButtonTest.php index f60a5522e..d980d1297 100644 --- a/tests/Zend/Dojo/View/Helper/RadioButtonTest.php +++ b/tests/Zend/Dojo/View/Helper/RadioButtonTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_RadioButtonTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_RadioButton|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/SimpleTextareaTest.php b/tests/Zend/Dojo/View/Helper/SimpleTextareaTest.php index 09f8a742f..49f71cec3 100644 --- a/tests/Zend/Dojo/View/Helper/SimpleTextareaTest.php +++ b/tests/Zend/Dojo/View/Helper/SimpleTextareaTest.php @@ -53,6 +53,16 @@ */ class Zend_Dojo_View_Helper_SimpleTextareaTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_SimpleTextarea|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/SplitContainerTest.php b/tests/Zend/Dojo/View/Helper/SplitContainerTest.php index d2a32a7f4..11008c2ff 100644 --- a/tests/Zend/Dojo/View/Helper/SplitContainerTest.php +++ b/tests/Zend/Dojo/View/Helper/SplitContainerTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_SplitContainerTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_SplitContainer|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/StackContainerTest.php b/tests/Zend/Dojo/View/Helper/StackContainerTest.php index 46f1e9392..658624931 100644 --- a/tests/Zend/Dojo/View/Helper/StackContainerTest.php +++ b/tests/Zend/Dojo/View/Helper/StackContainerTest.php @@ -50,6 +50,13 @@ */ class Zend_Dojo_View_Helper_StackContainerTest extends PHPUnit_Framework_TestCase { + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_StackContainer|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/SubmitButtonTest.php b/tests/Zend/Dojo/View/Helper/SubmitButtonTest.php index ad5d1a8b1..315dc121f 100644 --- a/tests/Zend/Dojo/View/Helper/SubmitButtonTest.php +++ b/tests/Zend/Dojo/View/Helper/SubmitButtonTest.php @@ -50,6 +50,13 @@ */ class Zend_Dojo_View_Helper_SubmitButtonTest extends PHPUnit_Framework_TestCase { + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_SubmitButton|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/TabContainerTest.php b/tests/Zend/Dojo/View/Helper/TabContainerTest.php index d04b25f9f..2c0dc68bf 100644 --- a/tests/Zend/Dojo/View/Helper/TabContainerTest.php +++ b/tests/Zend/Dojo/View/Helper/TabContainerTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_TabContainerTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_TabContainer|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/TextBoxTest.php b/tests/Zend/Dojo/View/Helper/TextBoxTest.php index ed4691582..12aeb438d 100644 --- a/tests/Zend/Dojo/View/Helper/TextBoxTest.php +++ b/tests/Zend/Dojo/View/Helper/TextBoxTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_TextBoxTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_TextBox|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/TextareaTest.php b/tests/Zend/Dojo/View/Helper/TextareaTest.php index 6ad49d2b9..5327ec71b 100644 --- a/tests/Zend/Dojo/View/Helper/TextareaTest.php +++ b/tests/Zend/Dojo/View/Helper/TextareaTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_TextareaTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_Textarea|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/TimeTextBoxTest.php b/tests/Zend/Dojo/View/Helper/TimeTextBoxTest.php index a44baceca..6932e62c8 100644 --- a/tests/Zend/Dojo/View/Helper/TimeTextBoxTest.php +++ b/tests/Zend/Dojo/View/Helper/TimeTextBoxTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_TimeTextBoxTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_TimeTextBox|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/ValidationTextBoxTest.php b/tests/Zend/Dojo/View/Helper/ValidationTextBoxTest.php index 1ef065447..479b18034 100644 --- a/tests/Zend/Dojo/View/Helper/ValidationTextBoxTest.php +++ b/tests/Zend/Dojo/View/Helper/ValidationTextBoxTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_ValidationTextBoxTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_ValidationTextBox|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dojo/View/Helper/VerticalSliderTest.php b/tests/Zend/Dojo/View/Helper/VerticalSliderTest.php index 7b4605ae8..0528c85ed 100644 --- a/tests/Zend/Dojo/View/Helper/VerticalSliderTest.php +++ b/tests/Zend/Dojo/View/Helper/VerticalSliderTest.php @@ -50,6 +50,16 @@ */ class Zend_Dojo_View_Helper_VerticalSliderTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View + */ + protected $view; + + /** + * @var \Zend_Dojo_View_Helper_VerticalSlider|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Dom/QueryTest.php b/tests/Zend/Dom/QueryTest.php index cdf3ac8c7..616cb6f7a 100644 --- a/tests/Zend/Dom/QueryTest.php +++ b/tests/Zend/Dom/QueryTest.php @@ -40,6 +40,19 @@ */ class Zend_Dom_QueryTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Dom_Query|mixed + */ + protected $query; + + /** + * @var string + */ + protected $error; + + /** + * @var string + */ public $html; /** diff --git a/tests/Zend/EventManager/EventManagerTest.php b/tests/Zend/EventManager/EventManagerTest.php index 96ecb137e..755e90799 100644 --- a/tests/Zend/EventManager/EventManagerTest.php +++ b/tests/Zend/EventManager/EventManagerTest.php @@ -41,6 +41,36 @@ */ class Zend_EventManager_EventManagerTest extends PHPUnit_Framework_TestCase { + /** + * @var string + */ + protected $message; + + /** + * @var string|mixed + */ + protected $default; + + /** + * @var \Zend_EventManager_EventManager|mixed + */ + protected $events; + + /** + * @var string|class-string<\FOO>|mixed + */ + protected $foo; + + /** + * @var string|mixed + */ + protected $bar; + + /** + * @var \stdClass|mixed + */ + protected $test; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/EventManager/FilterChainTest.php b/tests/Zend/EventManager/FilterChainTest.php index a34505458..f164ecac9 100644 --- a/tests/Zend/EventManager/FilterChainTest.php +++ b/tests/Zend/EventManager/FilterChainTest.php @@ -37,6 +37,16 @@ */ class Zend_EventManager_FilterChainTest extends PHPUnit_Framework_TestCase { + /** + * @var string + */ + protected $message; + + /** + * @var \Zend_EventManager_FilterChain|mixed + */ + protected $filterchain; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/EventManager/GlobalEventManagerTest.php b/tests/Zend/EventManager/GlobalEventManagerTest.php index 285fa5862..565d45c3e 100644 --- a/tests/Zend/EventManager/GlobalEventManagerTest.php +++ b/tests/Zend/EventManager/GlobalEventManagerTest.php @@ -36,6 +36,11 @@ */ class Zend_EventManager_GlobalEventManagerTest extends PHPUnit_Framework_TestCase { + /** + * @var \stdClass|mixed + */ + protected $test; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/EventManager/StaticEventManagerTest.php b/tests/Zend/EventManager/StaticEventManagerTest.php index 5b5667987..67668eb8b 100644 --- a/tests/Zend/EventManager/StaticEventManagerTest.php +++ b/tests/Zend/EventManager/StaticEventManagerTest.php @@ -36,6 +36,11 @@ */ class Zend_EventManager_StaticEventManagerTest extends PHPUnit_Framework_TestCase { + /** + * @var \stdClass|mixed + */ + protected $test; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/EventManager/StaticIntegrationTest.php b/tests/Zend/EventManager/StaticIntegrationTest.php index f26bc80bb..579f6ee10 100644 --- a/tests/Zend/EventManager/StaticIntegrationTest.php +++ b/tests/Zend/EventManager/StaticIntegrationTest.php @@ -38,6 +38,16 @@ */ class Zend_EventManager_StaticIntegrationTest extends PHPUnit_Framework_TestCase { + /** + * @var \stdClass|mixed + */ + protected $counter; + + /** + * @var \stdClass|mixed + */ + protected $test; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/Feed/Pubsubhubbub/SubscriberHttpTest.php b/tests/Zend/Feed/Pubsubhubbub/SubscriberHttpTest.php index 0b8822d0a..d17297d96 100644 --- a/tests/Zend/Feed/Pubsubhubbub/SubscriberHttpTest.php +++ b/tests/Zend/Feed/Pubsubhubbub/SubscriberHttpTest.php @@ -43,6 +43,7 @@ */ class Zend_Feed_Pubsubhubbub_SubscriberHttpTest extends PHPUnit_Framework_TestCase { + protected $_storage; protected $_subscriber = null; diff --git a/tests/Zend/Feed/Reader/Integration/PodcastRss2Test.php b/tests/Zend/Feed/Reader/Integration/PodcastRss2Test.php index 9666871d7..632172e68 100644 --- a/tests/Zend/Feed/Reader/Integration/PodcastRss2Test.php +++ b/tests/Zend/Feed/Reader/Integration/PodcastRss2Test.php @@ -33,6 +33,10 @@ */ class Zend_Feed_Reader_Integration_PodcastRss2Test extends PHPUnit_Framework_TestCase { + /** + * @var mixed[]|void|mixed + */ + protected $_options; protected $_feedSamplePath = null; diff --git a/tests/Zend/Filter/InflectorTest.php b/tests/Zend/Filter/InflectorTest.php index f318bed0e..e166a6e18 100644 --- a/tests/Zend/Filter/InflectorTest.php +++ b/tests/Zend/Filter/InflectorTest.php @@ -49,6 +49,21 @@ */ class Zend_Filter_InflectorTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Filter_Inflector|mixed + */ + protected $inflector; + + /** + * @var \Zend_Loader_PluginLoader_Interface|mixed + */ + protected $loader; + + /** + * @var string|mixed + */ + protected $_context; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Filter/PregReplaceTest.php b/tests/Zend/Filter/PregReplaceTest.php index 09f92fa9c..2e8befe92 100644 --- a/tests/Zend/Filter/PregReplaceTest.php +++ b/tests/Zend/Filter/PregReplaceTest.php @@ -44,6 +44,11 @@ */ class Zend_Filter_PregReplaceTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Filter_PregReplace|mixed + */ + protected $filter; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/FilterTest.php b/tests/Zend/FilterTest.php index 5b5efa339..113259aaf 100644 --- a/tests/Zend/FilterTest.php +++ b/tests/Zend/FilterTest.php @@ -36,6 +36,16 @@ */ class Zend_FilterTest extends PHPUnit_Framework_TestCase { + /** + * @var null|bool + */ + protected $error; + + /** + * @var bool + */ + protected $_errorOccurred; + /** * Zend_Filter object * diff --git a/tests/Zend/Form/Decorator/PrepareElementsTest.php b/tests/Zend/Form/Decorator/PrepareElementsTest.php index f37f328d3..22354522a 100644 --- a/tests/Zend/Form/Decorator/PrepareElementsTest.php +++ b/tests/Zend/Form/Decorator/PrepareElementsTest.php @@ -42,6 +42,16 @@ */ class Zend_Form_Decorator_PrepareElementsTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Form|mixed + */ + protected $form; + + /** + * @var \Zend_Form_Decorator_Abstract|bool + */ + protected $decorator; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Form/DisplayGroupTest.php b/tests/Zend/Form/DisplayGroupTest.php index 6c8013203..4d557fc7a 100644 --- a/tests/Zend/Form/DisplayGroupTest.php +++ b/tests/Zend/Form/DisplayGroupTest.php @@ -48,6 +48,21 @@ */ class Zend_Form_DisplayGroupTest extends PHPUnit_Framework_TestCase { + /** + * @var string + */ + protected $error; + + /** + * @var \Zend_Loader_PluginLoader|mixed + */ + protected $loader; + + /** + * @var \Zend_Form_DisplayGroup|mixed + */ + protected $group; + public static function main() { $suite = new PHPUnit_Framework_TestSuite('Zend_Form_DisplayGroupTest'); diff --git a/tests/Zend/Gdata/Analytics/AccountQueryTest.php b/tests/Zend/Gdata/Analytics/AccountQueryTest.php index c135e7c80..c54f4dc6d 100644 --- a/tests/Zend/Gdata/Analytics/AccountQueryTest.php +++ b/tests/Zend/Gdata/Analytics/AccountQueryTest.php @@ -33,6 +33,11 @@ */ class Zend_GData_Analytics_AccountQueryTest extends PHPUnit_Framework_TestCase { + /** + * @var string|mixed + */ + protected $queryBase; + /** * @var Zend_GData_Analytics_AccountQuery */ diff --git a/tests/Zend/Gdata/App/AuthorTest.php b/tests/Zend/Gdata/App/AuthorTest.php index 01975de44..7d8e42795 100644 --- a/tests/Zend/Gdata/App/AuthorTest.php +++ b/tests/Zend/Gdata/App/AuthorTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_App_AuthorTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $authorText; + + /** + * @var \Zend_Gdata_App_Extension_Author|mixed + */ + protected $author; public function setUp() { $this->authorText = file_get_contents( diff --git a/tests/Zend/Gdata/App/CaptchaRequiredExceptionTest.php b/tests/Zend/Gdata/App/CaptchaRequiredExceptionTest.php index f82501c22..50b325599 100644 --- a/tests/Zend/Gdata/App/CaptchaRequiredExceptionTest.php +++ b/tests/Zend/Gdata/App/CaptchaRequiredExceptionTest.php @@ -33,6 +33,10 @@ */ class Zend_Gdata_App_CaptchaRequiredExceptionTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_App_CaptchaRequiredException|mixed + */ + protected $exampleException; public function setUp() { $this->exampleException = new Zend_Gdata_App_CaptchaRequiredException('testtoken', 'Captcha?ctoken=testtoken'); diff --git a/tests/Zend/Gdata/App/CategoryTest.php b/tests/Zend/Gdata/App/CategoryTest.php index f250b378c..bf6b2acfe 100644 --- a/tests/Zend/Gdata/App/CategoryTest.php +++ b/tests/Zend/Gdata/App/CategoryTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_App_CategoryTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $categoryText; + + /** + * @var \Zend_Gdata_App_Extension_Category|mixed + */ + protected $category; public function setUp() { $this->categoryText = file_get_contents( diff --git a/tests/Zend/Gdata/App/ContentTest.php b/tests/Zend/Gdata/App/ContentTest.php index 9bfba4257..164c30599 100644 --- a/tests/Zend/Gdata/App/ContentTest.php +++ b/tests/Zend/Gdata/App/ContentTest.php @@ -34,6 +34,20 @@ */ class Zend_Gdata_App_ContentTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $contentText; + + /** + * @var string|bool|mixed + */ + protected $contentText2; + + /** + * @var \Zend_Gdata_App_Extension_Content|mixed + */ + protected $content; public function setUp() { $this->contentText = file_get_contents( diff --git a/tests/Zend/Gdata/App/ControlTest.php b/tests/Zend/Gdata/App/ControlTest.php index 630ae85da..c1f63723a 100644 --- a/tests/Zend/Gdata/App/ControlTest.php +++ b/tests/Zend/Gdata/App/ControlTest.php @@ -35,6 +35,15 @@ */ class Zend_Gdata_App_ControlTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $controlText; + + /** + * @var \Zend_Gdata_App_Extension_Control|mixed + */ + protected $control; public function setUp() { $this->controlText = file_get_contents( diff --git a/tests/Zend/Gdata/App/EntryTest.php b/tests/Zend/Gdata/App/EntryTest.php index b56e1a831..3cf4f91e8 100644 --- a/tests/Zend/Gdata/App/EntryTest.php +++ b/tests/Zend/Gdata/App/EntryTest.php @@ -36,6 +36,29 @@ */ class Zend_Gdata_App_EntryTest extends PHPUnit_Framework_TestCase { + protected $enryText; + + protected $httpEntrySample; + + /** + * @var \Zend_Gdata_App_Entry|mixed + */ + protected $enry; + + /** + * @var \Test_Zend_Gdata_MockHttpClient|mixed + */ + protected $adapter; + + /** + * @var \Zend_Gdata_HttpClient|mixed + */ + protected $client; + + /** + * @var \Zend_Gdata_App|mixed + */ + protected $service; public function setUp() { diff --git a/tests/Zend/Gdata/App/FeedTest.php b/tests/Zend/Gdata/App/FeedTest.php index f77274903..dab3b1998 100644 --- a/tests/Zend/Gdata/App/FeedTest.php +++ b/tests/Zend/Gdata/App/FeedTest.php @@ -35,6 +35,15 @@ */ class Zend_Gdata_App_FeedTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $feedText; + + /** + * @var \Zend_Gdata_App_Feed|mixed + */ + protected $feed; public function setUp() { $this->feedText = file_get_contents( diff --git a/tests/Zend/Gdata/App/GeneratorTest.php b/tests/Zend/Gdata/App/GeneratorTest.php index f70550eaf..11475ddb2 100644 --- a/tests/Zend/Gdata/App/GeneratorTest.php +++ b/tests/Zend/Gdata/App/GeneratorTest.php @@ -35,6 +35,15 @@ */ class Zend_Gdata_App_GeneratorTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $generatorText; + + /** + * @var \Zend_Gdata_App_Extension_Generator|mixed + */ + protected $generator; public function setUp() { $this->generatorText = file_get_contents( diff --git a/tests/Zend/Gdata/App/HttpExceptionTest.php b/tests/Zend/Gdata/App/HttpExceptionTest.php index 4fb59f158..e0b0f84dc 100644 --- a/tests/Zend/Gdata/App/HttpExceptionTest.php +++ b/tests/Zend/Gdata/App/HttpExceptionTest.php @@ -36,6 +36,20 @@ */ class Zend_Gdata_App_HttpExceptionTest extends PHPUnit_Framework_TestCase { + /** + * @var mixed + */ + protected $sprKey; + + /** + * @var mixed + */ + protected $wksId; + + /** + * @var \Zend_Gdata_Spreadsheets|mixed + */ + protected $gdata; public function setUp() { diff --git a/tests/Zend/Gdata/AppTest.php b/tests/Zend/Gdata/AppTest.php index 8aacf25e2..3582f71be 100644 --- a/tests/Zend/Gdata/AppTest.php +++ b/tests/Zend/Gdata/AppTest.php @@ -35,6 +35,46 @@ */ class Zend_Gdata_AppTest extends PHPUnit_Framework_TestCase { + /** + * @var string + */ + protected $fileName; + + /** + * @var string|mixed + */ + protected $expectedEtag; + + /** + * @var int|mixed + */ + protected $expectedMajorProtocolVersion; + + /** + * @var int|mixed + */ + protected $expectedMinorProtocolVersion; + + protected $httpEntrySample; + protected $httpEntrySampleWithoutVersion; + protected $httpFeedSample; + protected $httpFeedSampleWithoutVersion; + + /** + * @var \Test_Zend_Gdata_MockHttpClient|mixed + */ + protected $adapter; + + /** + * @var \Zend_Gdata_HttpClient|mixed + */ + protected $client; + + /** + * @var \Zend_Gdata_App|mixed + */ + protected $service; + public function setUp() { $this->fileName = 'Zend/Gdata/App/_files/FeedSample1.xml'; diff --git a/tests/Zend/Gdata/AttendeeStatusTest.php b/tests/Zend/Gdata/AttendeeStatusTest.php index 1453b48a0..3d904ce99 100644 --- a/tests/Zend/Gdata/AttendeeStatusTest.php +++ b/tests/Zend/Gdata/AttendeeStatusTest.php @@ -33,6 +33,15 @@ */ class Zend_Gdata_AttendeeStatusTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $attendeeStatusText; + + /** + * @var \Zend_Gdata_Extension_AttendeeStatus|mixed + */ + protected $attendeeStatus; public function setUp() { $this->attendeeStatusText = file_get_contents( diff --git a/tests/Zend/Gdata/AttendeeTypeTest.php b/tests/Zend/Gdata/AttendeeTypeTest.php index a170dc951..b6558cb65 100644 --- a/tests/Zend/Gdata/AttendeeTypeTest.php +++ b/tests/Zend/Gdata/AttendeeTypeTest.php @@ -33,6 +33,15 @@ */ class Zend_Gdata_AttendeeTypeTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $attendeeTypeText; + + /** + * @var \Zend_Gdata_Extension_AttendeeType|mixed + */ + protected $attendeeType; public function setUp() { $this->attendeeTypeText = file_get_contents( diff --git a/tests/Zend/Gdata/Books/CollectionEntryTest.php b/tests/Zend/Gdata/Books/CollectionEntryTest.php index 90caccf28..a386ecd6d 100644 --- a/tests/Zend/Gdata/Books/CollectionEntryTest.php +++ b/tests/Zend/Gdata/Books/CollectionEntryTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Books_CollectionEntryTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Books_CollectionEntry + */ + protected $gdata; public function setUp() { diff --git a/tests/Zend/Gdata/Books/CollectionFeedTest.php b/tests/Zend/Gdata/Books/CollectionFeedTest.php index 3104f060e..83bb42964 100644 --- a/tests/Zend/Gdata/Books/CollectionFeedTest.php +++ b/tests/Zend/Gdata/Books/CollectionFeedTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Books_CollectionFeedTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Books_CollectionFeed + */ + protected $gdata; public function setUp() { diff --git a/tests/Zend/Gdata/Books/VolumeEntryTest.php b/tests/Zend/Gdata/Books/VolumeEntryTest.php index 574578829..cf6020cec 100644 --- a/tests/Zend/Gdata/Books/VolumeEntryTest.php +++ b/tests/Zend/Gdata/Books/VolumeEntryTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Books_VolumeEntryTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $entryText; + + /** + * @var \Zend_Gdata_Books_VolumeEntry|mixed + */ + protected $entry; public function setUp() { $this->entryText = file_get_contents( diff --git a/tests/Zend/Gdata/Books/VolumeFeedTest.php b/tests/Zend/Gdata/Books/VolumeFeedTest.php index 8183ae4c3..d8fe44183 100644 --- a/tests/Zend/Gdata/Books/VolumeFeedTest.php +++ b/tests/Zend/Gdata/Books/VolumeFeedTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Books_VolumeFeedTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $feedText; + + /** + * @var \Zend_Gdata_Books_VolumeFeed|mixed + */ + protected $feed; public function setUp() { $this->feedText = file_get_contents( diff --git a/tests/Zend/Gdata/BooksOnlineTest.php b/tests/Zend/Gdata/BooksOnlineTest.php index 41a10e424..1473e5d2e 100644 --- a/tests/Zend/Gdata/BooksOnlineTest.php +++ b/tests/Zend/Gdata/BooksOnlineTest.php @@ -35,6 +35,10 @@ */ class Zend_Gdata_BooksOnlineTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Books|mixed + */ + protected $gdata; public function setUp() { diff --git a/tests/Zend/Gdata/BooksTest.php b/tests/Zend/Gdata/BooksTest.php index f99c0c441..824e7e3bd 100644 --- a/tests/Zend/Gdata/BooksTest.php +++ b/tests/Zend/Gdata/BooksTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_BooksTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Books + */ + protected $gdata; public function setUp() { diff --git a/tests/Zend/Gdata/Calendar/AccessLevelTest.php b/tests/Zend/Gdata/Calendar/AccessLevelTest.php index 31ee291a9..86af5f7c3 100644 --- a/tests/Zend/Gdata/Calendar/AccessLevelTest.php +++ b/tests/Zend/Gdata/Calendar/AccessLevelTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Calendar_AccessLevelTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $accessLevelText; + + /** + * @var \Zend_Gdata_Calendar_Extension_AccessLevel|mixed + */ + protected $accessLevel; public function setUp() { $this->accessLevelText = file_get_contents( diff --git a/tests/Zend/Gdata/Calendar/ColorTest.php b/tests/Zend/Gdata/Calendar/ColorTest.php index 56cdb635f..dd6b97f85 100644 --- a/tests/Zend/Gdata/Calendar/ColorTest.php +++ b/tests/Zend/Gdata/Calendar/ColorTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Calendar_ColorTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $colorText; + + /** + * @var \Zend_Gdata_Calendar_Extension_Color|mixed + */ + protected $color; public function setUp() { $this->colorText = file_get_contents( diff --git a/tests/Zend/Gdata/Calendar/EventEntryTest.php b/tests/Zend/Gdata/Calendar/EventEntryTest.php index 545b7765f..462a1eb63 100644 --- a/tests/Zend/Gdata/Calendar/EventEntryTest.php +++ b/tests/Zend/Gdata/Calendar/EventEntryTest.php @@ -35,6 +35,15 @@ */ class Zend_Gdata_Calendar_EventEntryTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $entryText; + + /** + * @var \Zend_Gdata_Calendar_EventEntry|mixed + */ + protected $entry; public function setUp() { $this->entryText = file_get_contents( diff --git a/tests/Zend/Gdata/Calendar/EventQueryExceptionTest.php b/tests/Zend/Gdata/Calendar/EventQueryExceptionTest.php index 428a66821..00693ede4 100644 --- a/tests/Zend/Gdata/Calendar/EventQueryExceptionTest.php +++ b/tests/Zend/Gdata/Calendar/EventQueryExceptionTest.php @@ -35,6 +35,10 @@ */ class Zend_Gdata_Calendar_EventQueryExceptionTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Calendar_EventQuery|mixed + */ + protected $query; const GOOGLE_DEVELOPER_CALENDAR = 'developer-calendar@google.com'; diff --git a/tests/Zend/Gdata/Calendar/EventQueryTest.php b/tests/Zend/Gdata/Calendar/EventQueryTest.php index b2f4ed742..960aef0e6 100644 --- a/tests/Zend/Gdata/Calendar/EventQueryTest.php +++ b/tests/Zend/Gdata/Calendar/EventQueryTest.php @@ -35,11 +35,16 @@ */ class Zend_Gdata_Calendar_EventQueryTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Calendar_EventQuery|mixed + */ + protected $query; const GOOGLE_DEVELOPER_CALENDAR = 'developer-calendar@google.com'; const ZEND_CONFERENCE_EVENT = 'bn2h4o4mc3a03ci4t48j3m56pg'; const ZEND_CONFERENCE_EVENT_COMMENT = 'i9q87onko1uphfs7i21elnnb4g'; const SAMPLE_RFC3339 = "2007-06-05T18:38:00"; + public function setUp() { $this->query = new Zend_Gdata_Calendar_EventQuery(); diff --git a/tests/Zend/Gdata/Calendar/HiddenTest.php b/tests/Zend/Gdata/Calendar/HiddenTest.php index 21da4fdff..7f7f7dcdd 100644 --- a/tests/Zend/Gdata/Calendar/HiddenTest.php +++ b/tests/Zend/Gdata/Calendar/HiddenTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Calendar_HiddenTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $hiddenText; + + /** + * @var \Zend_Gdata_Calendar_Extension_Hidden|mixed + */ + protected $hidden; public function setUp() { $this->hiddenText = file_get_contents( diff --git a/tests/Zend/Gdata/Calendar/LinkTest.php b/tests/Zend/Gdata/Calendar/LinkTest.php index 0a29a1c10..e61c11096 100644 --- a/tests/Zend/Gdata/Calendar/LinkTest.php +++ b/tests/Zend/Gdata/Calendar/LinkTest.php @@ -35,6 +35,15 @@ */ class Zend_Gdata_Calendar_LinkTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $linkText; + + /** + * @var \Zend_Gdata_Calendar_Extension_Link|mixed + */ + protected $link; public function setUp() { $this->linkText = file_get_contents( diff --git a/tests/Zend/Gdata/Calendar/QuickAddTest.php b/tests/Zend/Gdata/Calendar/QuickAddTest.php index 2637d4a69..1e9747851 100644 --- a/tests/Zend/Gdata/Calendar/QuickAddTest.php +++ b/tests/Zend/Gdata/Calendar/QuickAddTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Calendar_QuickAddTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $quickAddText; + + /** + * @var \Zend_Gdata_Calendar_Extension_QuickAdd|mixed + */ + protected $quickAdd; public function setUp() { $this->quickAddText = file_get_contents( diff --git a/tests/Zend/Gdata/Calendar/SelectedTest.php b/tests/Zend/Gdata/Calendar/SelectedTest.php index 541d165fd..8eb2c73f6 100644 --- a/tests/Zend/Gdata/Calendar/SelectedTest.php +++ b/tests/Zend/Gdata/Calendar/SelectedTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Calendar_SelectedTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $selectedText; + + /** + * @var \Zend_Gdata_Calendar_Extension_Selected|mixed + */ + protected $selected; public function setUp() { $this->selectedText = file_get_contents( diff --git a/tests/Zend/Gdata/Calendar/SendEventNotificationsTest.php b/tests/Zend/Gdata/Calendar/SendEventNotificationsTest.php index 24f334d48..b13847584 100644 --- a/tests/Zend/Gdata/Calendar/SendEventNotificationsTest.php +++ b/tests/Zend/Gdata/Calendar/SendEventNotificationsTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Calendar_SendEventNotificationsTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $sendEventNotificationsText; + + /** + * @var \Zend_Gdata_Calendar_Extension_SendEventNotifications|mixed + */ + protected $sendEventNotifications; public function setUp() { $this->sendEventNotificationsText = file_get_contents( diff --git a/tests/Zend/Gdata/Calendar/TimezoneTest.php b/tests/Zend/Gdata/Calendar/TimezoneTest.php index b5de5a69a..427d05078 100644 --- a/tests/Zend/Gdata/Calendar/TimezoneTest.php +++ b/tests/Zend/Gdata/Calendar/TimezoneTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Calendar_TimezoneTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $timezoneText; + + /** + * @var \Zend_Gdata_Calendar_Extension_Timezone|mixed + */ + protected $timezone; public function setUp() { $this->timezoneText = file_get_contents( diff --git a/tests/Zend/Gdata/Calendar/WebContentTest.php b/tests/Zend/Gdata/Calendar/WebContentTest.php index e0c7c12e6..9fe906cba 100644 --- a/tests/Zend/Gdata/Calendar/WebContentTest.php +++ b/tests/Zend/Gdata/Calendar/WebContentTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Calendar_WebContentTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $webContentText; + + /** + * @var \Zend_Gdata_Calendar_Extension_WebContent|mixed + */ + protected $webContent; public function setUp() { $this->webContentText = file_get_contents( diff --git a/tests/Zend/Gdata/CalendarOnlineTest.php b/tests/Zend/Gdata/CalendarOnlineTest.php index b1d9ede5a..d9e60d80c 100644 --- a/tests/Zend/Gdata/CalendarOnlineTest.php +++ b/tests/Zend/Gdata/CalendarOnlineTest.php @@ -36,6 +36,10 @@ */ class Zend_Gdata_CalendarOnlineTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Calendar|mixed + */ + protected $gdata; const GOOGLE_DEVELOPER_CALENDAR = 'developer-calendar@google.com'; const ZEND_CONFERENCE_EVENT = 'bn2h4o4mc3a03ci4t48j3m56pg'; diff --git a/tests/Zend/Gdata/CalendarTest.php b/tests/Zend/Gdata/CalendarTest.php index c9e742b00..7eae63097 100644 --- a/tests/Zend/Gdata/CalendarTest.php +++ b/tests/Zend/Gdata/CalendarTest.php @@ -36,6 +36,16 @@ */ class Zend_Gdata_CalendarTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $eventFeedText; + + /** + * @var \Zend_Gdata_Calendar_EventFeed|mixed + */ + protected $eventFeed; + public function setUp() { $this->eventFeedText = file_get_contents( diff --git a/tests/Zend/Gdata/CommentsTest.php b/tests/Zend/Gdata/CommentsTest.php index b6c928d82..f3d45f2c6 100644 --- a/tests/Zend/Gdata/CommentsTest.php +++ b/tests/Zend/Gdata/CommentsTest.php @@ -33,6 +33,15 @@ */ class Zend_Gdata_CommentsTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $commentsText; + + /** + * @var \Zend_Gdata_Extension_Comments|mixed + */ + protected $comments; public function setUp() { $this->commentsText = file_get_contents( diff --git a/tests/Zend/Gdata/Docs/DocumentListEntryTest.php b/tests/Zend/Gdata/Docs/DocumentListEntryTest.php index 2add0af10..174fbc7c8 100644 --- a/tests/Zend/Gdata/Docs/DocumentListEntryTest.php +++ b/tests/Zend/Gdata/Docs/DocumentListEntryTest.php @@ -35,6 +35,15 @@ */ class Zend_Gdata_Docs_DocumentListEntryTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Docs_DocumentListEntry|mixed + */ + protected $doc; + + /** + * @var \Zend_Gdata_Docs|mixed + */ + protected $docsClient; public function setUp() { diff --git a/tests/Zend/Gdata/Docs/DocumentListFeedTest.php b/tests/Zend/Gdata/Docs/DocumentListFeedTest.php index 133db73a6..df2f4547a 100644 --- a/tests/Zend/Gdata/Docs/DocumentListFeedTest.php +++ b/tests/Zend/Gdata/Docs/DocumentListFeedTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Docs_DocumentListFeedTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Docs_DocumentListFeed|mixed + */ + protected $docFeed; public function setUp() { diff --git a/tests/Zend/Gdata/Docs/QueryTest.php b/tests/Zend/Gdata/Docs/QueryTest.php index bb6d84e30..7bcc89f00 100644 --- a/tests/Zend/Gdata/Docs/QueryTest.php +++ b/tests/Zend/Gdata/Docs/QueryTest.php @@ -35,6 +35,10 @@ */ class Zend_Gdata_Docs_QueryTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Docs_Query|mixed + */ + protected $docQuery; public function setUp() { diff --git a/tests/Zend/Gdata/DocsOnlineTest.php b/tests/Zend/Gdata/DocsOnlineTest.php index 2f631fe01..86f3a0bb9 100644 --- a/tests/Zend/Gdata/DocsOnlineTest.php +++ b/tests/Zend/Gdata/DocsOnlineTest.php @@ -35,6 +35,15 @@ */ class Zend_Gdata_DocsOnlineTest extends PHPUnit_Framework_TestCase { + /** + * @var mixed + */ + protected $docTitle; + + /** + * @var \Zend_Gdata_Docs|mixed + */ + protected $gdata; public function setUp() { diff --git a/tests/Zend/Gdata/DocsTest.php b/tests/Zend/Gdata/DocsTest.php index 068d11aa9..4fa238076 100644 --- a/tests/Zend/Gdata/DocsTest.php +++ b/tests/Zend/Gdata/DocsTest.php @@ -35,6 +35,20 @@ */ class Zend_Gdata_DocsTest extends PHPUnit_Framework_TestCase { + /** + * @var \Test_Zend_Gdata_MockHttpClient|mixed + */ + protected $adapter; + + /** + * @var \Zend_Gdata_HttpClient|mixed + */ + protected $client; + + /** + * @var \Zend_Gdata_Docs|mixed + */ + protected $gdata; public function setUp() { diff --git a/tests/Zend/Gdata/EntryLinkTest.php b/tests/Zend/Gdata/EntryLinkTest.php index e66236464..d5de1bbd1 100644 --- a/tests/Zend/Gdata/EntryLinkTest.php +++ b/tests/Zend/Gdata/EntryLinkTest.php @@ -33,6 +33,15 @@ */ class Zend_Gdata_EntryLinkTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $entryLinkText; + + /** + * @var \Zend_Gdata_Extension_EntryLink|mixed + */ + protected $entryLink; public function setUp() { $this->entryLinkText = file_get_contents( diff --git a/tests/Zend/Gdata/EntryTest.php b/tests/Zend/Gdata/EntryTest.php index 36dab6528..89cccf716 100644 --- a/tests/Zend/Gdata/EntryTest.php +++ b/tests/Zend/Gdata/EntryTest.php @@ -32,6 +32,45 @@ */ class Zend_Gdata_EntryTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Entry|mixed + */ + protected $entry; + + /** + * @var string|bool|mixed + */ + protected $entryText; + + /** + * @var string|mixed + */ + protected $etagLocalName; + + /** + * @var string|mixed + */ + protected $expectedEtag; + + /** + * @var string|mixed + */ + protected $expectedMismatchExceptionMessage; + + /** + * @var string|mixed + */ + protected $gdNamespace; + + /** + * @var string|mixed + */ + protected $openSearchNamespacev1; + + /** + * @var string|mixed + */ + protected $openSearchNamespacev2; public function setUp() { $this->entry = new Zend_Gdata_Entry(); diff --git a/tests/Zend/Gdata/EventStatusTest.php b/tests/Zend/Gdata/EventStatusTest.php index c4ccd7e85..84df86e4f 100644 --- a/tests/Zend/Gdata/EventStatusTest.php +++ b/tests/Zend/Gdata/EventStatusTest.php @@ -33,6 +33,15 @@ */ class Zend_Gdata_EventStatusTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $eventStatusText; + + /** + * @var \Zend_Gdata_Extension_EventStatus|mixed + */ + protected $eventStatus; public function setUp() { $this->eventStatusText = file_get_contents( diff --git a/tests/Zend/Gdata/ExtendedPropertyTest.php b/tests/Zend/Gdata/ExtendedPropertyTest.php index ad687b1cf..29a6ef019 100644 --- a/tests/Zend/Gdata/ExtendedPropertyTest.php +++ b/tests/Zend/Gdata/ExtendedPropertyTest.php @@ -33,6 +33,15 @@ */ class Zend_Gdata_ExtendedPropertyTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $extendedPropertyText; + + /** + * @var \Zend_Gdata_Extension_ExtendedProperty|mixed + */ + protected $extendedProperty; public function setUp() { $this->extendedPropertyText = file_get_contents( diff --git a/tests/Zend/Gdata/FeedLinkTest.php b/tests/Zend/Gdata/FeedLinkTest.php index 2c9251d37..48630f52f 100644 --- a/tests/Zend/Gdata/FeedLinkTest.php +++ b/tests/Zend/Gdata/FeedLinkTest.php @@ -33,6 +33,15 @@ */ class Zend_Gdata_FeedLinkTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $feedLinkText; + + /** + * @var \Zend_Gdata_Extension_FeedLink|mixed + */ + protected $feedLink; public function setUp() { $this->feedLinkText = file_get_contents( diff --git a/tests/Zend/Gdata/FeedTest.php b/tests/Zend/Gdata/FeedTest.php index 0b7d2604f..043135298 100644 --- a/tests/Zend/Gdata/FeedTest.php +++ b/tests/Zend/Gdata/FeedTest.php @@ -34,6 +34,50 @@ */ class Zend_Gdata_FeedTest extends PHPUnit_Framework_TestCase { + /** + * @var string|mixed + */ + protected $etagLocalName; + + /** + * @var string|mixed + */ + protected $expectedEtag; + + /** + * @var string|mixed + */ + protected $expectedMismatchExceptionMessage; + + /** + * @var \Zend_Gdata_Feed|mixed + */ + protected $feed; + + /** + * @var string|bool|mixed + */ + protected $feedTextV1; + + /** + * @var string|bool|mixed + */ + protected $feedTextV2; + + /** + * @var string|mixed + */ + protected $gdNamespace; + + /** + * @var string|mixed + */ + protected $openSearchNamespacev1; + + /** + * @var string|mixed + */ + protected $openSearchNamespacev2; public function setUp() { $this->etagLocalName = 'etag'; diff --git a/tests/Zend/Gdata/Gapps/EmailListEntryTest.php b/tests/Zend/Gdata/Gapps/EmailListEntryTest.php index c72dd300c..2ca20f2b2 100644 --- a/tests/Zend/Gdata/Gapps/EmailListEntryTest.php +++ b/tests/Zend/Gdata/Gapps/EmailListEntryTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Gapps_EmailListEntryTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $entryText; + + /** + * @var \Zend_Gdata_Gapps_EmailListEntry|mixed + */ + protected $entry; public function setUp() { $this->entryText = file_get_contents( diff --git a/tests/Zend/Gdata/Gapps/EmailListFeedTest.php b/tests/Zend/Gdata/Gapps/EmailListFeedTest.php index 9a6205c0e..20ad568b6 100644 --- a/tests/Zend/Gdata/Gapps/EmailListFeedTest.php +++ b/tests/Zend/Gdata/Gapps/EmailListFeedTest.php @@ -34,6 +34,11 @@ */ class Zend_Gdata_Gapps_EmailListFeedTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Gapps_EmailListFeed|mixed + */ + protected $emptyEmailListFeed; + protected $emailListFeed = null; /** diff --git a/tests/Zend/Gdata/Gapps/EmailListQueryTest.php b/tests/Zend/Gdata/Gapps/EmailListQueryTest.php index 80924b21a..b5a3b4a2a 100644 --- a/tests/Zend/Gdata/Gapps/EmailListQueryTest.php +++ b/tests/Zend/Gdata/Gapps/EmailListQueryTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Gapps_EmailListQueryTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Gapps_EmailListQuery|mixed + */ + protected $query; public function setUp() { diff --git a/tests/Zend/Gdata/Gapps/EmailListRecipientEntryTest.php b/tests/Zend/Gdata/Gapps/EmailListRecipientEntryTest.php index 74c59c543..cb16ade7f 100644 --- a/tests/Zend/Gdata/Gapps/EmailListRecipientEntryTest.php +++ b/tests/Zend/Gdata/Gapps/EmailListRecipientEntryTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Gapps_EmailListRecipientEntryTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $entryText; + + /** + * @var \Zend_Gdata_Gapps_EmailListRecipientEntry|mixed + */ + protected $entry; public function setUp() { $this->entryText = file_get_contents( diff --git a/tests/Zend/Gdata/Gapps/EmailListRecipientFeedTest.php b/tests/Zend/Gdata/Gapps/EmailListRecipientFeedTest.php index 3c590a2a5..1e5a74865 100644 --- a/tests/Zend/Gdata/Gapps/EmailListRecipientFeedTest.php +++ b/tests/Zend/Gdata/Gapps/EmailListRecipientFeedTest.php @@ -34,6 +34,11 @@ */ class Zend_Gdata_Gapps_EmailListRecipientFeedTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Gapps_EmailListRecipientFeed|mixed + */ + protected $emptyEmailListRecipientFeed; + protected $emailListRecipientFeed = null; /** diff --git a/tests/Zend/Gdata/Gapps/EmailListRecipientQueryTest.php b/tests/Zend/Gdata/Gapps/EmailListRecipientQueryTest.php index 1a300999e..dfe5d316d 100644 --- a/tests/Zend/Gdata/Gapps/EmailListRecipientQueryTest.php +++ b/tests/Zend/Gdata/Gapps/EmailListRecipientQueryTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Gapps_EmailListRecipientQueryTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Gapps_EmailListRecipientQuery|mixed + */ + protected $query; public function setUp() { diff --git a/tests/Zend/Gdata/Gapps/EmailListTest.php b/tests/Zend/Gdata/Gapps/EmailListTest.php index 77eab819e..d623551d1 100644 --- a/tests/Zend/Gdata/Gapps/EmailListTest.php +++ b/tests/Zend/Gdata/Gapps/EmailListTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Gapps_EmailListTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $emailListText; + + /** + * @var \Zend_Gdata_Gapps_Extension_EmailList|mixed + */ + protected $emailList; public function setUp() { $this->emailListText = file_get_contents( diff --git a/tests/Zend/Gdata/Gapps/ErrorTest.php b/tests/Zend/Gdata/Gapps/ErrorTest.php index 153abbcc0..8fee3ebaa 100644 --- a/tests/Zend/Gdata/Gapps/ErrorTest.php +++ b/tests/Zend/Gdata/Gapps/ErrorTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Gapps_ErrorTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Gapps_Error|mixed + */ + protected $error; public function setUp() { $this->error = new Zend_Gdata_Gapps_Error(); diff --git a/tests/Zend/Gdata/Gapps/GroupEntryTest.php b/tests/Zend/Gdata/Gapps/GroupEntryTest.php index 2992e14ff..c39971211 100644 --- a/tests/Zend/Gdata/Gapps/GroupEntryTest.php +++ b/tests/Zend/Gdata/Gapps/GroupEntryTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Gapps_GroupEntryTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $entryText; + + /** + * @var \Zend_Gdata_Gapps_GroupEntry|mixed + */ + protected $entry; public function setUp() { $this->entryText = file_get_contents( diff --git a/tests/Zend/Gdata/Gapps/GroupFeedTest.php b/tests/Zend/Gdata/Gapps/GroupFeedTest.php index fb6e7410f..889c3bfce 100644 --- a/tests/Zend/Gdata/Gapps/GroupFeedTest.php +++ b/tests/Zend/Gdata/Gapps/GroupFeedTest.php @@ -34,6 +34,11 @@ */ class Zend_Gdata_Gapps_GroupFeedTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Gapps_GroupFeed|mixed + */ + protected $emptyGroupFeed; + protected $groupFeed = null; /** diff --git a/tests/Zend/Gdata/Gapps/GroupQueryTest.php b/tests/Zend/Gdata/Gapps/GroupQueryTest.php index 819eed7fc..4fefbb8cb 100644 --- a/tests/Zend/Gdata/Gapps/GroupQueryTest.php +++ b/tests/Zend/Gdata/Gapps/GroupQueryTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Gapps_GroupQueryTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Gapps_GroupQuery|mixed + */ + protected $query; public function setUp() { diff --git a/tests/Zend/Gdata/Gapps/LoginTest.php b/tests/Zend/Gdata/Gapps/LoginTest.php index ce3addb68..6d08fe0be 100644 --- a/tests/Zend/Gdata/Gapps/LoginTest.php +++ b/tests/Zend/Gdata/Gapps/LoginTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Gapps_LoginTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $loginText; + + /** + * @var \Zend_Gdata_Gapps_Extension_Login|mixed + */ + protected $login; public function setUp() { $this->loginText = file_get_contents( diff --git a/tests/Zend/Gdata/Gapps/MemberEntryTest.php b/tests/Zend/Gdata/Gapps/MemberEntryTest.php index 011fbf1c3..f7c413baf 100644 --- a/tests/Zend/Gdata/Gapps/MemberEntryTest.php +++ b/tests/Zend/Gdata/Gapps/MemberEntryTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Gapps_MemberEntryTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $entryText; + + /** + * @var \Zend_Gdata_Gapps_MemberEntry|mixed + */ + protected $entry; public function setUp() { $this->entryText = file_get_contents( diff --git a/tests/Zend/Gdata/Gapps/MemberFeedTest.php b/tests/Zend/Gdata/Gapps/MemberFeedTest.php index 4300b3563..786e7a5f3 100644 --- a/tests/Zend/Gdata/Gapps/MemberFeedTest.php +++ b/tests/Zend/Gdata/Gapps/MemberFeedTest.php @@ -34,6 +34,11 @@ */ class Zend_Gdata_Gapps_MemberFeedTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Gapps_MemberFeed|mixed + */ + protected $emptyMemberFeed; + protected $memberFeed = null; /** diff --git a/tests/Zend/Gdata/Gapps/MemberQueryTest.php b/tests/Zend/Gdata/Gapps/MemberQueryTest.php index 04794408f..034fc6a49 100644 --- a/tests/Zend/Gdata/Gapps/MemberQueryTest.php +++ b/tests/Zend/Gdata/Gapps/MemberQueryTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Gapps_MemberQueryTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Gapps_MemberQuery|mixed + */ + protected $query; public function setUp() { diff --git a/tests/Zend/Gdata/Gapps/NameTest.php b/tests/Zend/Gdata/Gapps/NameTest.php index bf67b0156..bc09a43bd 100644 --- a/tests/Zend/Gdata/Gapps/NameTest.php +++ b/tests/Zend/Gdata/Gapps/NameTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Gapps_NameTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $theNameText; + + /** + * @var \Zend_Gdata_Gapps_Extension_Name|mixed + */ + protected $theName; public function setUp() { $this->theNameText = file_get_contents( diff --git a/tests/Zend/Gdata/Gapps/NicknameEntryTest.php b/tests/Zend/Gdata/Gapps/NicknameEntryTest.php index 7dc4a85f0..302c71436 100644 --- a/tests/Zend/Gdata/Gapps/NicknameEntryTest.php +++ b/tests/Zend/Gdata/Gapps/NicknameEntryTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Gapps_NicknameEntryTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $entryText; + + /** + * @var \Zend_Gdata_Gapps_NicknameEntry|mixed + */ + protected $entry; public function setUp() { $this->entryText = file_get_contents( diff --git a/tests/Zend/Gdata/Gapps/NicknameFeedTest.php b/tests/Zend/Gdata/Gapps/NicknameFeedTest.php index 70c8fe363..e9023cad6 100644 --- a/tests/Zend/Gdata/Gapps/NicknameFeedTest.php +++ b/tests/Zend/Gdata/Gapps/NicknameFeedTest.php @@ -34,6 +34,11 @@ */ class Zend_Gdata_Gapps_NicknameFeedTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Gapps_NicknameFeed|mixed + */ + protected $emptyNicknameFeed; + protected $nicknameFeed = null; /** diff --git a/tests/Zend/Gdata/Gapps/NicknameQueryTest.php b/tests/Zend/Gdata/Gapps/NicknameQueryTest.php index 9c16a1f2b..90ee6dcfb 100644 --- a/tests/Zend/Gdata/Gapps/NicknameQueryTest.php +++ b/tests/Zend/Gdata/Gapps/NicknameQueryTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Gapps_NicknameQueryTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Gapps_NicknameQuery|mixed + */ + protected $query; public function setUp() { diff --git a/tests/Zend/Gdata/Gapps/NicknameTest.php b/tests/Zend/Gdata/Gapps/NicknameTest.php index 52e687600..db1352fa6 100644 --- a/tests/Zend/Gdata/Gapps/NicknameTest.php +++ b/tests/Zend/Gdata/Gapps/NicknameTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Gapps_NicknameTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $nicknameText; + + /** + * @var \Zend_Gdata_Gapps_Extension_Nickname|mixed + */ + protected $nickname; public function setUp() { $this->nicknameText = file_get_contents( diff --git a/tests/Zend/Gdata/Gapps/OwnerEntryTest.php b/tests/Zend/Gdata/Gapps/OwnerEntryTest.php index 01827835b..03c4ec13f 100644 --- a/tests/Zend/Gdata/Gapps/OwnerEntryTest.php +++ b/tests/Zend/Gdata/Gapps/OwnerEntryTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Gapps_OwnerEntryTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $entryText; + + /** + * @var \Zend_Gdata_Gapps_OwnerEntry|mixed + */ + protected $entry; public function setUp() { $this->entryText = file_get_contents( diff --git a/tests/Zend/Gdata/Gapps/OwnerFeedTest.php b/tests/Zend/Gdata/Gapps/OwnerFeedTest.php index 76c6aba5c..50790626a 100644 --- a/tests/Zend/Gdata/Gapps/OwnerFeedTest.php +++ b/tests/Zend/Gdata/Gapps/OwnerFeedTest.php @@ -34,6 +34,11 @@ */ class Zend_Gdata_Gapps_OwnerFeedTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Gapps_OwnerFeed|mixed + */ + protected $emptyOwnerFeed; + protected $ownerFeed = null; /** diff --git a/tests/Zend/Gdata/Gapps/OwnerQueryTest.php b/tests/Zend/Gdata/Gapps/OwnerQueryTest.php index e64c15cb9..2fe18504a 100644 --- a/tests/Zend/Gdata/Gapps/OwnerQueryTest.php +++ b/tests/Zend/Gdata/Gapps/OwnerQueryTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Gapps_OwnerQueryTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Gapps_OwnerQuery|mixed + */ + protected $query; public function setUp() { diff --git a/tests/Zend/Gdata/Gapps/PropertyTest.php b/tests/Zend/Gdata/Gapps/PropertyTest.php index ee789b935..080251af7 100644 --- a/tests/Zend/Gdata/Gapps/PropertyTest.php +++ b/tests/Zend/Gdata/Gapps/PropertyTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Gapps_PropertyTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $thePropertyText; + + /** + * @var \Zend_Gdata_Gapps_Extension_Property|mixed + */ + protected $theProperty; public function setUp() { $this->thePropertyText = file_get_contents( diff --git a/tests/Zend/Gdata/Gapps/QuotaTest.php b/tests/Zend/Gdata/Gapps/QuotaTest.php index 519ed3306..ae61aaf94 100644 --- a/tests/Zend/Gdata/Gapps/QuotaTest.php +++ b/tests/Zend/Gdata/Gapps/QuotaTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Gapps_QuotaTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $quotaText; + + /** + * @var \Zend_Gdata_Gapps_Extension_Quota|mixed + */ + protected $quota; public function setUp() { $this->quotaText = file_get_contents( diff --git a/tests/Zend/Gdata/Gapps/ServiceExceptionTest.php b/tests/Zend/Gdata/Gapps/ServiceExceptionTest.php index 43e3236ea..b6a798bec 100644 --- a/tests/Zend/Gdata/Gapps/ServiceExceptionTest.php +++ b/tests/Zend/Gdata/Gapps/ServiceExceptionTest.php @@ -35,6 +35,11 @@ */ class Zend_Gdata_Gapps_ServiceExceptionTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $xmlSample; + protected $fixture; protected $data; diff --git a/tests/Zend/Gdata/Gapps/UserEntryTest.php b/tests/Zend/Gdata/Gapps/UserEntryTest.php index 5bce891b2..255d34cc3 100644 --- a/tests/Zend/Gdata/Gapps/UserEntryTest.php +++ b/tests/Zend/Gdata/Gapps/UserEntryTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Gapps_UserEntryTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $entryText; + + /** + * @var \Zend_Gdata_Gapps_UserEntry|mixed + */ + protected $entry; public function setUp() { $this->entryText = file_get_contents( diff --git a/tests/Zend/Gdata/Gapps/UserFeedTest.php b/tests/Zend/Gdata/Gapps/UserFeedTest.php index afaeefa30..dd8ce57a9 100644 --- a/tests/Zend/Gdata/Gapps/UserFeedTest.php +++ b/tests/Zend/Gdata/Gapps/UserFeedTest.php @@ -34,6 +34,11 @@ */ class Zend_Gdata_Gapps_UserFeedTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Gapps_UserFeed|mixed + */ + protected $emptyUserFeed; + protected $userFeed = null; /** diff --git a/tests/Zend/Gdata/Gapps/UserQueryTest.php b/tests/Zend/Gdata/Gapps/UserQueryTest.php index 8ac2d9c67..d05e29e90 100644 --- a/tests/Zend/Gdata/Gapps/UserQueryTest.php +++ b/tests/Zend/Gdata/Gapps/UserQueryTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Gapps_UserQueryTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Gapps_UserQuery|mixed + */ + protected $query; public function setUp() { diff --git a/tests/Zend/Gdata/GappsOnlineTest.php b/tests/Zend/Gdata/GappsOnlineTest.php index 083021519..5b6bf4ad1 100644 --- a/tests/Zend/Gdata/GappsOnlineTest.php +++ b/tests/Zend/Gdata/GappsOnlineTest.php @@ -37,6 +37,22 @@ */ class Zend_Gdata_GappsOnlineTest extends PHPUnit_Framework_TestCase { + /** + * @var string|mixed + */ + protected $id; + /** + * @var mixed + */ + protected $domain; + /** + * @var \Zend_Gdata_Gapps|mixed + */ + protected $gdata; + /** + * @var mixed[]|mixed + */ + protected $autoDeletePool; const GIVEN_NAME = 'Zend_Gdata'; const FAMILY_NAME = 'Automated Test Account'; diff --git a/tests/Zend/Gdata/GappsTest.php b/tests/Zend/Gdata/GappsTest.php index a79dc6262..b361f558e 100644 --- a/tests/Zend/Gdata/GappsTest.php +++ b/tests/Zend/Gdata/GappsTest.php @@ -36,6 +36,11 @@ */ class Zend_Gdata_GappsTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Gapps|mixed + */ + protected $gdata; + const TEST_DOMAIN = 'nowhere.invalid'; public function setUp() diff --git a/tests/Zend/Gdata/GdataOnlineTest.php b/tests/Zend/Gdata/GdataOnlineTest.php index f6fef40cb..a1a7823ab 100644 --- a/tests/Zend/Gdata/GdataOnlineTest.php +++ b/tests/Zend/Gdata/GdataOnlineTest.php @@ -37,6 +37,11 @@ */ class Zend_Gdata_GdataOnlineTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata|mixed + */ + protected $gdata; + private $blog = null; // blog ID from config public function setUp() diff --git a/tests/Zend/Gdata/MediaMimeStreamTest.php b/tests/Zend/Gdata/MediaMimeStreamTest.php index e09f854bb..d2d09500d 100644 --- a/tests/Zend/Gdata/MediaMimeStreamTest.php +++ b/tests/Zend/Gdata/MediaMimeStreamTest.php @@ -32,6 +32,30 @@ */ class Zend_Gdata_MediaMimeStreamTest extends PHPUnit_Framework_TestCase { + /** + * @var string|mixed + */ + protected $locationOfFakeBinary; + + /** + * @var string|mixed + */ + protected $smallXMLString; + + /** + * @var string|mixed + */ + protected $testMediaType; + + /** + * @var \Zend_Gdata_MediaMimeStream|mixed + */ + protected $mediaMimeStream; + + /** + * @var int|mixed + */ + protected $exceptedLenOfMimeMessage; public function setUp() { diff --git a/tests/Zend/Gdata/OpenSearchItemsPerPageTest.php b/tests/Zend/Gdata/OpenSearchItemsPerPageTest.php index 0f0fa1849..e44d579b8 100644 --- a/tests/Zend/Gdata/OpenSearchItemsPerPageTest.php +++ b/tests/Zend/Gdata/OpenSearchItemsPerPageTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_OpenSearchItemsPerPageTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $openSearchItemsPerPageText; + + /** + * @var \Zend_Gdata_Extension_OpenSearchItemsPerPage|mixed + */ + protected $openSearchItemsPerPage; public function setUp() { $this->openSearchItemsPerPageText = file_get_contents( diff --git a/tests/Zend/Gdata/OpenSearchStartIndexTest.php b/tests/Zend/Gdata/OpenSearchStartIndexTest.php index e05e566ad..32bc37cfc 100644 --- a/tests/Zend/Gdata/OpenSearchStartIndexTest.php +++ b/tests/Zend/Gdata/OpenSearchStartIndexTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_OpenSearchStartIndexTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $openSearchStartIndexText; + + /** + * @var \Zend_Gdata_Extension_OpenSearchStartIndex|mixed + */ + protected $openSearchStartIndex; public function setUp() { $this->openSearchStartIndexText = file_get_contents( diff --git a/tests/Zend/Gdata/OpenSearchTotalResultsTest.php b/tests/Zend/Gdata/OpenSearchTotalResultsTest.php index 9fc72476d..54e56040e 100644 --- a/tests/Zend/Gdata/OpenSearchTotalResultsTest.php +++ b/tests/Zend/Gdata/OpenSearchTotalResultsTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_OpenSearchTotalResultsTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $openSearchTotalResultsText; + + /** + * @var \Zend_Gdata_Extension_OpenSearchTotalResults|mixed + */ + protected $openSearchTotalResults; public function setUp() { $this->openSearchTotalResultsText = file_get_contents( diff --git a/tests/Zend/Gdata/OriginalEventTest.php b/tests/Zend/Gdata/OriginalEventTest.php index 93de9be67..f01b6017d 100644 --- a/tests/Zend/Gdata/OriginalEventTest.php +++ b/tests/Zend/Gdata/OriginalEventTest.php @@ -33,6 +33,15 @@ */ class Zend_Gdata_OriginalEventTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $originalEventText; + + /** + * @var \Zend_Gdata_Extension_OriginalEvent|mixed + */ + protected $originalEvent; public function setUp() { $this->originalEventText = file_get_contents( diff --git a/tests/Zend/Gdata/RecurrenceExceptionTest.php b/tests/Zend/Gdata/RecurrenceExceptionTest.php index 3a30ffb77..6ec3e4248 100644 --- a/tests/Zend/Gdata/RecurrenceExceptionTest.php +++ b/tests/Zend/Gdata/RecurrenceExceptionTest.php @@ -33,6 +33,15 @@ */ class Zend_Gdata_RecurrenceExceptionTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $recurrenceExceptionText; + + /** + * @var \Zend_Gdata_Extension_RecurrenceException|mixed + */ + protected $recurrenceException; public function setUp() { $this->recurrenceExceptionText = file_get_contents( diff --git a/tests/Zend/Gdata/RecurrenceTest.php b/tests/Zend/Gdata/RecurrenceTest.php index 804d0feb9..6e67c8578 100644 --- a/tests/Zend/Gdata/RecurrenceTest.php +++ b/tests/Zend/Gdata/RecurrenceTest.php @@ -33,6 +33,15 @@ */ class Zend_Gdata_RecurrenceTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $recurrenceText; + + /** + * @var \Zend_Gdata_Extension_Recurrence|mixed + */ + protected $recurrence; public function setUp() { $this->recurrenceText = file_get_contents( diff --git a/tests/Zend/Gdata/ReminderTest.php b/tests/Zend/Gdata/ReminderTest.php index 2f64488bf..785d69faa 100644 --- a/tests/Zend/Gdata/ReminderTest.php +++ b/tests/Zend/Gdata/ReminderTest.php @@ -33,6 +33,15 @@ */ class Zend_Gdata_ReminderTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $reminderText; + + /** + * @var \Zend_Gdata_Extension_Reminder|mixed + */ + protected $reminder; public function setUp() { $this->reminderText = file_get_contents( diff --git a/tests/Zend/Gdata/Spreadsheets/CellEntryTest.php b/tests/Zend/Gdata/Spreadsheets/CellEntryTest.php index 7d85aaa7e..7dfcf5757 100644 --- a/tests/Zend/Gdata/Spreadsheets/CellEntryTest.php +++ b/tests/Zend/Gdata/Spreadsheets/CellEntryTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Spreadsheets_CellEntryTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Spreadsheets_CellEntry|mixed + */ + protected $cellEntry; public function setUp() { diff --git a/tests/Zend/Gdata/Spreadsheets/CellFeedTest.php b/tests/Zend/Gdata/Spreadsheets/CellFeedTest.php index 73095e3e9..c951b6a60 100644 --- a/tests/Zend/Gdata/Spreadsheets/CellFeedTest.php +++ b/tests/Zend/Gdata/Spreadsheets/CellFeedTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Spreadsheets_CellFeedTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Spreadsheets_CellFeed|mixed + */ + protected $cellFeed; public function setUp() { diff --git a/tests/Zend/Gdata/Spreadsheets/CellQueryTest.php b/tests/Zend/Gdata/Spreadsheets/CellQueryTest.php index d2e12b7c4..ce24112ab 100644 --- a/tests/Zend/Gdata/Spreadsheets/CellQueryTest.php +++ b/tests/Zend/Gdata/Spreadsheets/CellQueryTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Spreadsheets_CellQueryTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Spreadsheets_CellQuery|mixed + */ + protected $docQuery; public function setUp() { diff --git a/tests/Zend/Gdata/Spreadsheets/CellTest.php b/tests/Zend/Gdata/Spreadsheets/CellTest.php index aaec2bd88..d528ebd28 100644 --- a/tests/Zend/Gdata/Spreadsheets/CellTest.php +++ b/tests/Zend/Gdata/Spreadsheets/CellTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Spreadsheets_CellTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Spreadsheets_Extension_Cell|mixed + */ + protected $cell; public function setUp() { diff --git a/tests/Zend/Gdata/Spreadsheets/ColCountTest.php b/tests/Zend/Gdata/Spreadsheets/ColCountTest.php index 6fa33a863..b8b67b9d6 100644 --- a/tests/Zend/Gdata/Spreadsheets/ColCountTest.php +++ b/tests/Zend/Gdata/Spreadsheets/ColCountTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Spreadsheets_ColCountTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Spreadsheets_Extension_ColCount|mixed + */ + protected $colCount; public function setUp() { diff --git a/tests/Zend/Gdata/Spreadsheets/CustomTest.php b/tests/Zend/Gdata/Spreadsheets/CustomTest.php index 34596ab94..16e05e49c 100644 --- a/tests/Zend/Gdata/Spreadsheets/CustomTest.php +++ b/tests/Zend/Gdata/Spreadsheets/CustomTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Spreadsheets_CustomTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Spreadsheets_Extension_Custom|mixed + */ + protected $custom; public function setUp() { diff --git a/tests/Zend/Gdata/Spreadsheets/DocumentQueryTest.php b/tests/Zend/Gdata/Spreadsheets/DocumentQueryTest.php index 082a6f2b4..4f1f93ade 100644 --- a/tests/Zend/Gdata/Spreadsheets/DocumentQueryTest.php +++ b/tests/Zend/Gdata/Spreadsheets/DocumentQueryTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Spreadsheets_DocumentQueryTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Spreadsheets_DocumentQuery|mixed + */ + protected $docQuery; public function setUp() { diff --git a/tests/Zend/Gdata/Spreadsheets/ListEntryTest.php b/tests/Zend/Gdata/Spreadsheets/ListEntryTest.php index b2c8e74b6..d532d8778 100644 --- a/tests/Zend/Gdata/Spreadsheets/ListEntryTest.php +++ b/tests/Zend/Gdata/Spreadsheets/ListEntryTest.php @@ -34,6 +34,15 @@ */ class Zend_Gdata_Spreadsheets_ListEntryTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Spreadsheets_ListEntry|mixed + */ + protected $listEntry; + + /** + * @var mixed[]|\Zend_Gdata_Spreadsheets_Extension_Custom[]|mixed + */ + protected $rowData; public function setUp() { diff --git a/tests/Zend/Gdata/Spreadsheets/ListFeedTest.php b/tests/Zend/Gdata/Spreadsheets/ListFeedTest.php index 2e7cd5394..1e0f91a63 100644 --- a/tests/Zend/Gdata/Spreadsheets/ListFeedTest.php +++ b/tests/Zend/Gdata/Spreadsheets/ListFeedTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Spreadsheets_ListFeedTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Spreadsheets_ListFeed|mixed + */ + protected $listFeed; public function setUp() { diff --git a/tests/Zend/Gdata/Spreadsheets/ListQueryTest.php b/tests/Zend/Gdata/Spreadsheets/ListQueryTest.php index d0dc2921b..1d62e1ca6 100644 --- a/tests/Zend/Gdata/Spreadsheets/ListQueryTest.php +++ b/tests/Zend/Gdata/Spreadsheets/ListQueryTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Spreadsheets_ListQueryTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Spreadsheets_ListQuery|mixed + */ + protected $docQuery; public function setUp() { diff --git a/tests/Zend/Gdata/Spreadsheets/RowCountTest.php b/tests/Zend/Gdata/Spreadsheets/RowCountTest.php index c107f018c..3dbbd2c2e 100644 --- a/tests/Zend/Gdata/Spreadsheets/RowCountTest.php +++ b/tests/Zend/Gdata/Spreadsheets/RowCountTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Spreadsheets_RowCountTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Spreadsheets_Extension_RowCount|mixed + */ + protected $rowCount; public function setUp() { diff --git a/tests/Zend/Gdata/Spreadsheets/SpreadsheetFeedTest.php b/tests/Zend/Gdata/Spreadsheets/SpreadsheetFeedTest.php index 63f0084d4..d5a55efd0 100644 --- a/tests/Zend/Gdata/Spreadsheets/SpreadsheetFeedTest.php +++ b/tests/Zend/Gdata/Spreadsheets/SpreadsheetFeedTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Spreadsheets_SpreadsheetFeedTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Spreadsheets_SpreadsheetFeed|mixed + */ + protected $sprFeed; public function setUp() { diff --git a/tests/Zend/Gdata/Spreadsheets/WorksheetEntryTest.php b/tests/Zend/Gdata/Spreadsheets/WorksheetEntryTest.php index f58e52f23..fc4b562c6 100644 --- a/tests/Zend/Gdata/Spreadsheets/WorksheetEntryTest.php +++ b/tests/Zend/Gdata/Spreadsheets/WorksheetEntryTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Spreadsheets_WorksheetEntryTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Spreadsheets_WorksheetEntry|mixed + */ + protected $wksEntry; public function setUp() { diff --git a/tests/Zend/Gdata/Spreadsheets/WorksheetFeedTest.php b/tests/Zend/Gdata/Spreadsheets/WorksheetFeedTest.php index 81facbfe9..09135e1c3 100644 --- a/tests/Zend/Gdata/Spreadsheets/WorksheetFeedTest.php +++ b/tests/Zend/Gdata/Spreadsheets/WorksheetFeedTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_Spreadsheets_WorksheetFeedTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Spreadsheets_WorksheetFeed|mixed + */ + protected $wksFeed; public function setUp() { diff --git a/tests/Zend/Gdata/SpreadsheetsOnlineTest.php b/tests/Zend/Gdata/SpreadsheetsOnlineTest.php index 79a3a05f2..3b99ed648 100644 --- a/tests/Zend/Gdata/SpreadsheetsOnlineTest.php +++ b/tests/Zend/Gdata/SpreadsheetsOnlineTest.php @@ -35,6 +35,20 @@ */ class Zend_Gdata_SpreadsheetsOnlineTest extends PHPUnit_Framework_TestCase { + /** + * @var mixed + */ + protected $sprKey; + + /** + * @var mixed + */ + protected $wksId; + + /** + * @var \Zend_Gdata_Spreadsheets|mixed + */ + protected $gdata; public function setUp() { diff --git a/tests/Zend/Gdata/SpreadsheetsTest.php b/tests/Zend/Gdata/SpreadsheetsTest.php index 0608c37b8..d3354067c 100644 --- a/tests/Zend/Gdata/SpreadsheetsTest.php +++ b/tests/Zend/Gdata/SpreadsheetsTest.php @@ -34,6 +34,10 @@ */ class Zend_Gdata_SpreadsheetsTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Gdata_Spreadsheets + */ + protected $gdata; public function setUp() { diff --git a/tests/Zend/Gdata/TestUtility/MockHttpClient.php b/tests/Zend/Gdata/TestUtility/MockHttpClient.php index 934ccff98..1d65eaf2f 100644 --- a/tests/Zend/Gdata/TestUtility/MockHttpClient.php +++ b/tests/Zend/Gdata/TestUtility/MockHttpClient.php @@ -31,7 +31,7 @@ */ class Test_Zend_Gdata_MockHttpClient_Request { - public $methd; + public $method; public $uri; public $http_ver; public $headers; diff --git a/tests/Zend/Gdata/TransparencyTest.php b/tests/Zend/Gdata/TransparencyTest.php index 29c9761e4..0fc1e8149 100644 --- a/tests/Zend/Gdata/TransparencyTest.php +++ b/tests/Zend/Gdata/TransparencyTest.php @@ -33,6 +33,15 @@ */ class Zend_Gdata_TransparencyTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $transparencyText; + + /** + * @var \Zend_Gdata_Extension_Transparency|mixed + */ + protected $transparency; public function setUp() { $this->transparencyText = file_get_contents( diff --git a/tests/Zend/Gdata/VisibilityTest.php b/tests/Zend/Gdata/VisibilityTest.php index 0971eae82..bcc35e61d 100644 --- a/tests/Zend/Gdata/VisibilityTest.php +++ b/tests/Zend/Gdata/VisibilityTest.php @@ -33,6 +33,15 @@ */ class Zend_Gdata_VisibilityTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $visibilityText; + + /** + * @var \Zend_Gdata_Extension_Visibility|mixed + */ + protected $visibility; public function setUp() { $this->visibilityText = file_get_contents( diff --git a/tests/Zend/Gdata/WhenTest.php b/tests/Zend/Gdata/WhenTest.php index 5beb53c3a..69f7bb21f 100644 --- a/tests/Zend/Gdata/WhenTest.php +++ b/tests/Zend/Gdata/WhenTest.php @@ -33,6 +33,15 @@ */ class Zend_Gdata_WhenTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $whenText; + + /** + * @var \Zend_Gdata_Extension_When|mixed + */ + protected $when; public function setUp() { $this->whenText = file_get_contents( diff --git a/tests/Zend/Gdata/WhereTest.php b/tests/Zend/Gdata/WhereTest.php index 2bc81b14d..2a39c3d2e 100644 --- a/tests/Zend/Gdata/WhereTest.php +++ b/tests/Zend/Gdata/WhereTest.php @@ -33,6 +33,15 @@ */ class Zend_Gdata_WhereTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $whereText; + + /** + * @var \Zend_Gdata_Extension_Where|mixed + */ + protected $where; public function setUp() { $this->whereText = file_get_contents( diff --git a/tests/Zend/Gdata/WhoTest.php b/tests/Zend/Gdata/WhoTest.php index 25a4ea591..ff7a1b344 100644 --- a/tests/Zend/Gdata/WhoTest.php +++ b/tests/Zend/Gdata/WhoTest.php @@ -33,6 +33,15 @@ */ class Zend_Gdata_WhoTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $whoText; + + /** + * @var \Zend_Gdata_Extension_Who|mixed + */ + protected $who; public function setUp() { $this->whoText = file_get_contents( diff --git a/tests/Zend/Http/Client/ClientTest.php b/tests/Zend/Http/Client/ClientTest.php index 2e2b7651f..88007d3ab 100644 --- a/tests/Zend/Http/Client/ClientTest.php +++ b/tests/Zend/Http/Client/ClientTest.php @@ -33,6 +33,11 @@ */ class Zend_Http_Client_ClientTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Http_Client|mixed + */ + protected $client; + /** * Set up the test case * diff --git a/tests/Zend/Http/UserAgent/Features/Adapter/DeviceAtlasTest.php b/tests/Zend/Http/UserAgent/Features/Adapter/DeviceAtlasTest.php index 995ee73d8..25ac7db9e 100644 --- a/tests/Zend/Http/UserAgent/Features/Adapter/DeviceAtlasTest.php +++ b/tests/Zend/Http/UserAgent/Features/Adapter/DeviceAtlasTest.php @@ -30,6 +30,10 @@ */ class Zend_Http_UserAgent_Features_Adapter_DeviceAtlasTest extends PHPUnit_Framework_TestCase { + /** + * @var array + */ + protected $config; public function setUp() { diff --git a/tests/Zend/Http/UserAgent/Features/Adapter/TeraWurflTest.php b/tests/Zend/Http/UserAgent/Features/Adapter/TeraWurflTest.php index 17e23f804..df841606d 100644 --- a/tests/Zend/Http/UserAgent/Features/Adapter/TeraWurflTest.php +++ b/tests/Zend/Http/UserAgent/Features/Adapter/TeraWurflTest.php @@ -34,6 +34,11 @@ */ class Zend_Http_UserAgent_Features_Adapter_TeraWurflTest extends PHPUnit_Framework_TestCase { + /** + * @var array + */ + protected $config; + public function setUp() { if (!constant('TESTS_ZEND_HTTP_USERAGENT_TERAWURFL_LIB_DIR')) { diff --git a/tests/Zend/Http/UserAgentTest.php b/tests/Zend/Http/UserAgentTest.php index 0823caa9c..88c04dc37 100644 --- a/tests/Zend/Http/UserAgentTest.php +++ b/tests/Zend/Http/UserAgentTest.php @@ -41,6 +41,15 @@ */ class Zend_Http_UserAgentTest extends PHPUnit_Framework_TestCase { + /** + * @var array + */ + protected $server; + + /** + * @var array + */ + protected $config; public function setUp() { diff --git a/tests/Zend/Json/Server/CacheTest.php b/tests/Zend/Json/Server/CacheTest.php index b2c72f10c..066b8e0aa 100644 --- a/tests/Zend/Json/Server/CacheTest.php +++ b/tests/Zend/Json/Server/CacheTest.php @@ -41,6 +41,16 @@ */ class Zend_Json_Server_CacheTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Json_Server|mixed + */ + protected $server; + + /** + * @var string|bool|mixed + */ + protected $cacheFile; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Json/Server/ErrorTest.php b/tests/Zend/Json/Server/ErrorTest.php index 4a80122f1..8d70ecbc6 100644 --- a/tests/Zend/Json/Server/ErrorTest.php +++ b/tests/Zend/Json/Server/ErrorTest.php @@ -41,6 +41,11 @@ */ class Zend_Json_Server_ErrorTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Json_Server_Error|mixed + */ + protected $error; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Json/Server/RequestTest.php b/tests/Zend/Json/Server/RequestTest.php index 576bde522..7255eb6dc 100644 --- a/tests/Zend/Json/Server/RequestTest.php +++ b/tests/Zend/Json/Server/RequestTest.php @@ -39,6 +39,11 @@ */ class Zend_Json_Server_RequestTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Json_Server_Request|mixed + */ + protected $request; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Json/Server/ResponseTest.php b/tests/Zend/Json/Server/ResponseTest.php index 3fc5bb0f8..cab34c56f 100644 --- a/tests/Zend/Json/Server/ResponseTest.php +++ b/tests/Zend/Json/Server/ResponseTest.php @@ -42,6 +42,11 @@ */ class Zend_Json_Server_ResponseTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Json_Server_Response|mixed + */ + protected $response; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Json/Server/Smd/ServiceTest.php b/tests/Zend/Json/Server/Smd/ServiceTest.php index 248b410ef..6878193ad 100644 --- a/tests/Zend/Json/Server/Smd/ServiceTest.php +++ b/tests/Zend/Json/Server/Smd/ServiceTest.php @@ -42,6 +42,11 @@ */ class Zend_Json_Server_Smd_ServiceTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Json_Server_Smd_Service|mixed + */ + protected $service; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Json/Server/SmdTest.php b/tests/Zend/Json/Server/SmdTest.php index 8f4616364..6edad9494 100644 --- a/tests/Zend/Json/Server/SmdTest.php +++ b/tests/Zend/Json/Server/SmdTest.php @@ -42,6 +42,11 @@ */ class Zend_Json_Server_SmdTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Json_Server_Smd|mixed + */ + protected $smd; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Json/ServerTest.php b/tests/Zend/Json/ServerTest.php index 409760e87..33efda3ef 100644 --- a/tests/Zend/Json/ServerTest.php +++ b/tests/Zend/Json/ServerTest.php @@ -44,6 +44,11 @@ */ class Zend_Json_ServerTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Json_Server|mixed + */ + protected $server; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Loader/Autoloader/ResourceTest.php b/tests/Zend/Loader/Autoloader/ResourceTest.php index 9ca1e8a9d..f1e6d8f13 100644 --- a/tests/Zend/Loader/Autoloader/ResourceTest.php +++ b/tests/Zend/Loader/Autoloader/ResourceTest.php @@ -52,6 +52,31 @@ */ class Zend_Loader_Autoloader_ResourceTest extends PHPUnit_Framework_TestCase { + /** + * @var mixed[]|mixed + */ + protected $loaders; + + /** + * @var string|bool|mixed + */ + protected $includePath; + + /** + * @var \Zend_Loader_Autoloader + */ + protected $autoloader; + + /** + * @var null + */ + protected $error; + + /** + * @var \Zend_Loader_Autoloader_Resource|mixed + */ + protected $loader; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/Loader/AutoloaderFactoryTest.php b/tests/Zend/Loader/AutoloaderFactoryTest.php index 32cdb121c..9e3c36163 100644 --- a/tests/Zend/Loader/AutoloaderFactoryTest.php +++ b/tests/Zend/Loader/AutoloaderFactoryTest.php @@ -40,6 +40,16 @@ */ class Zend_Loader_AutoloaderFactoryTest extends PHPUnit_Framework_TestCase { + /** + * @var mixed[]|mixed + */ + protected $loaders; + + /** + * @var string|bool|mixed + */ + protected $includePath; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/Loader/AutoloaderMultiVersionTest.php b/tests/Zend/Loader/AutoloaderMultiVersionTest.php index cede0b5c4..10a2995ff 100644 --- a/tests/Zend/Loader/AutoloaderMultiVersionTest.php +++ b/tests/Zend/Loader/AutoloaderMultiVersionTest.php @@ -39,6 +39,46 @@ */ class Zend_Loader_AutoloaderMultiVersionTest extends PHPUnit_Framework_TestCase { + /** + * @var mixed[]|mixed + */ + protected $loaders; + + /** + * @var string|bool|mixed + */ + protected $includePath; + + /** + * @var mixed + */ + protected $path; + + /** + * @var mixed + */ + protected $latest; + + /** + * @var mixed + */ + protected $latestMajor; + + /** + * @var mixed + */ + protected $latestMinor; + + /** + * @var mixed + */ + protected $specific; + + /** + * @var \Zend_Loader_Autoloader|mixed + */ + protected $autoloader; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/Loader/AutoloaderTest.php b/tests/Zend/Loader/AutoloaderTest.php index 41cc6c8fd..033650f8f 100644 --- a/tests/Zend/Loader/AutoloaderTest.php +++ b/tests/Zend/Loader/AutoloaderTest.php @@ -44,6 +44,26 @@ */ class Zend_Loader_AutoloaderTest extends PHPUnit_Framework_TestCase { + /** + * @var mixed[]|mixed + */ + protected $loaders; + + /** + * @var string|bool|mixed + */ + protected $includePath; + + /** + * @var \Zend_Loader_Autoloader|mixed + */ + protected $autoloader; + + /** + * @var null|mixed + */ + protected $error; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/Loader/ClassMapAutoloaderTest.php b/tests/Zend/Loader/ClassMapAutoloaderTest.php index b394298a5..9881e3ce3 100644 --- a/tests/Zend/Loader/ClassMapAutoloaderTest.php +++ b/tests/Zend/Loader/ClassMapAutoloaderTest.php @@ -36,6 +36,21 @@ */ class Zend_Loader_ClassMapAutoloaderTest extends PHPUnit_Framework_TestCase { + /** + * @var mixed[]|mixed + */ + protected $loaders; + + /** + * @var string|bool|mixed + */ + protected $includePath; + + /** + * @var Zend_Loader_ClassMapAutoloader + */ + private $loader; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/Loader/PluginLoaderTest.php b/tests/Zend/Loader/PluginLoaderTest.php index 9a37f6662..347445eeb 100644 --- a/tests/Zend/Loader/PluginLoaderTest.php +++ b/tests/Zend/Loader/PluginLoaderTest.php @@ -39,6 +39,16 @@ */ class Zend_Loader_PluginLoaderTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $libPath; + + /** + * @var null|mixed|string + */ + protected $key; + protected $_includeCache; /** diff --git a/tests/Zend/Loader/StandardAutoloaderTest.php b/tests/Zend/Loader/StandardAutoloaderTest.php index 19c04e17b..62f41d8ea 100644 --- a/tests/Zend/Loader/StandardAutoloaderTest.php +++ b/tests/Zend/Loader/StandardAutoloaderTest.php @@ -37,6 +37,16 @@ */ class Zend_Loader_StandardAutoloaderTest extends PHPUnit_Framework_TestCase { + /** + * @var mixed[]|mixed + */ + protected $loaders; + + /** + * @var string|bool|mixed + */ + protected $includePath; + public function setUp() { // Store original autoloaders diff --git a/tests/Zend/LoaderTest.php b/tests/Zend/LoaderTest.php index a4f5825c3..f63c3546e 100644 --- a/tests/Zend/LoaderTest.php +++ b/tests/Zend/LoaderTest.php @@ -49,6 +49,7 @@ class Zend_LoaderTest extends PHPUnit_Framework_TestCase * @var array */ private $loaders; + /** * @var string */ diff --git a/tests/Zend/Log/Filter/ChainingTest.php b/tests/Zend/Log/Filter/ChainingTest.php index 33a15dcd9..f49377386 100644 --- a/tests/Zend/Log/Filter/ChainingTest.php +++ b/tests/Zend/Log/Filter/ChainingTest.php @@ -40,6 +40,16 @@ */ class Zend_Log_Filter_ChainingTest extends PHPUnit_Framework_TestCase { + /** + * @var resource|bool|mixed + */ + protected $log; + + /** + * @var \Zend_Log|mixed + */ + protected $logger; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/Log/Filter/SuppressTest.php b/tests/Zend/Log/Filter/SuppressTest.php index 96000fc91..7b323d1d1 100644 --- a/tests/Zend/Log/Filter/SuppressTest.php +++ b/tests/Zend/Log/Filter/SuppressTest.php @@ -40,6 +40,11 @@ */ class Zend_Log_Filter_SuppressTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Log_Filter_Suppress|mixed + */ + protected $filter; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/Log/LogTest.php b/tests/Zend/Log/LogTest.php index 5646b3885..a40ce002f 100644 --- a/tests/Zend/Log/LogTest.php +++ b/tests/Zend/Log/LogTest.php @@ -46,6 +46,26 @@ */ class Zend_Log_LogTest extends PHPUnit_Framework_TestCase { + /** + * @var resource|bool|mixed + */ + protected $log; + + /** + * @var \Zend_Log_Writer_Stream|mixed + */ + protected $writer; + + /** + * @var \Zend_Log_Writer_Mock|mixed + */ + protected $errWriter; + + /** + * @var bool|mixed + */ + protected $expectingLogging; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/Log/Writer/DbTest.php b/tests/Zend/Log/Writer/DbTest.php index 843351bfd..8b2e9751d 100644 --- a/tests/Zend/Log/Writer/DbTest.php +++ b/tests/Zend/Log/Writer/DbTest.php @@ -37,6 +37,21 @@ */ class Zend_Log_Writer_DbTest extends PHPUnit_Framework_TestCase { + /** + * @var string|mixed + */ + protected $tableName; + + /** + * @var \Zend_Log_Writer_DbTest_MockDbAdapter|mixed + */ + protected $db; + + /** + * @var \Zend_Log_Writer_Db|mixed + */ + protected $writer; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/Mail/FileTransportTest.php b/tests/Zend/Mail/FileTransportTest.php index 937c62585..651be3251 100644 --- a/tests/Zend/Mail/FileTransportTest.php +++ b/tests/Zend/Mail/FileTransportTest.php @@ -40,6 +40,10 @@ */ class Zend_Mail_FileTransportTest extends PHPUnit_Framework_TestCase { + /** + * @var bool|mixed + */ + protected $createdTmpDir; protected $_params; protected $_transport; protected $_tmpdir; diff --git a/tests/Zend/Mail/MboxMessageOldTest.php b/tests/Zend/Mail/MboxMessageOldTest.php index e426f7172..1374e54cf 100644 --- a/tests/Zend/Mail/MboxMessageOldTest.php +++ b/tests/Zend/Mail/MboxMessageOldTest.php @@ -93,7 +93,9 @@ public function setUp() public function tearDown() { - unlink($this->_mboxFile); + if ($this->_mboxFile) { + unlink($this->_mboxFile); + } } public function testFetchHeader() diff --git a/tests/Zend/Mail/MboxTest.php b/tests/Zend/Mail/MboxTest.php index fe2100061..5ac87ecaf 100644 --- a/tests/Zend/Mail/MboxTest.php +++ b/tests/Zend/Mail/MboxTest.php @@ -76,7 +76,9 @@ public function setUp() public function tearDown() { - unlink($this->_mboxFile); + if ($this->_mboxFile) { + unlink($this->_mboxFile); + } } public function testLoadOk() diff --git a/tests/Zend/Measure/TemperatureTest.php b/tests/Zend/Measure/TemperatureTest.php index 043260e05..8e92a724e 100644 --- a/tests/Zend/Measure/TemperatureTest.php +++ b/tests/Zend/Measure/TemperatureTest.php @@ -44,6 +44,11 @@ */ class Zend_Measure_TemperatureTest extends PHPUnit_Framework_TestCase { + /** + * @var string|bool|mixed + */ + protected $_locale; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/Mobile/Push/AbstractTest.php b/tests/Zend/Mobile/Push/AbstractTest.php index 0c15d42c2..c16326725 100644 --- a/tests/Zend/Mobile/Push/AbstractTest.php +++ b/tests/Zend/Mobile/Push/AbstractTest.php @@ -33,9 +33,13 @@ * @group Zend_Mobile_Push * @group Zend_Mobile_Push_Abstract */ - class Zend_Mobile_Push_AbstractTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Mobile_Push_AbstractProxy|mixed + */ + protected $adapter; + public function setUp() { $this->adapter = new Zend_Mobile_Push_AbstractProxy(); diff --git a/tests/Zend/Mobile/Push/ApnsTest.php b/tests/Zend/Mobile/Push/ApnsTest.php index 33f69c80b..cac6342ed 100644 --- a/tests/Zend/Mobile/Push/ApnsTest.php +++ b/tests/Zend/Mobile/Push/ApnsTest.php @@ -35,6 +35,15 @@ */ class Zend_Mobile_Push_ApnsTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Mobile_Push_Test_ApnsProxy|mixed + */ + protected $apns; + + /** + * @var \Zend_Mobile_Push_Message_Apns|mixed + */ + protected $message; public function setUp() { diff --git a/tests/Zend/Mobile/Push/GcmTest.php b/tests/Zend/Mobile/Push/GcmTest.php index 366ebc3df..98993a791 100644 --- a/tests/Zend/Mobile/Push/GcmTest.php +++ b/tests/Zend/Mobile/Push/GcmTest.php @@ -36,6 +36,25 @@ */ class Zend_Mobile_Push_gcmTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Http_Client_Adapter_Test|mixed + */ + protected $adapter; + + /** + * @var \Zend_Http_Client|mixed + */ + protected $client; + + /** + * @var \Zend_Mobile_Push_Gcm|mixed + */ + protected $gcm; + + /** + * @var \Zend_Mobile_Push_Message_Gcm|mixed + */ + protected $message; protected function _createJSONResponse($id, $success, $failure, $ids, $results) { diff --git a/tests/Zend/Mobile/Push/Message/AbstractTest.php b/tests/Zend/Mobile/Push/Message/AbstractTest.php index fbab4d906..215c0c1cd 100644 --- a/tests/Zend/Mobile/Push/Message/AbstractTest.php +++ b/tests/Zend/Mobile/Push/Message/AbstractTest.php @@ -32,6 +32,11 @@ */ class Zend_Mobile_Push_Message_AbstractTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Mobile_Push_Message_AbstractProxy|mixed + */ + protected $msg; + public function setUp() { $this->msg = new Zend_Mobile_Push_Message_AbstractProxy(); diff --git a/tests/Zend/Mobile/Push/Message/ApnsTest.php b/tests/Zend/Mobile/Push/Message/ApnsTest.php index 5366f5758..4ccd0a779 100644 --- a/tests/Zend/Mobile/Push/Message/ApnsTest.php +++ b/tests/Zend/Mobile/Push/Message/ApnsTest.php @@ -34,6 +34,11 @@ */ class Zend_Mobile_Push_Message_ApnsTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Mobile_Push_Message_Apns|mixed + */ + protected $message; + public function setUp() { $this->message = new Zend_Mobile_Push_Message_Apns(); diff --git a/tests/Zend/Mobile/Push/MpnsTest.php b/tests/Zend/Mobile/Push/MpnsTest.php index 0d6b7c4c9..d358c431d 100644 --- a/tests/Zend/Mobile/Push/MpnsTest.php +++ b/tests/Zend/Mobile/Push/MpnsTest.php @@ -39,6 +39,20 @@ */ class Zend_Mobile_Push_MpnsTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Http_Client_Adapter_Test|mixed + */ + protected $adapter; + + /** + * @var \Zend_Http_Client|mixed + */ + protected $client; + + /** + * @var \Zend_Mobile_Push_Mpns|mixed + */ + protected $mpns; public function setUp() { diff --git a/tests/Zend/Oauth/ClientTest.php b/tests/Zend/Oauth/ClientTest.php index 246612218..6149b4e9f 100644 --- a/tests/Zend/Oauth/ClientTest.php +++ b/tests/Zend/Oauth/ClientTest.php @@ -41,6 +41,11 @@ public function getSignableParametersAsQueryString() */ class Zend_Oauth_ClientTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Oauth_Client|mixed + */ + protected $client; + public function setUp() { $this->client = new Zend_Oauth_Client(array()); diff --git a/tests/Zend/Oauth/ConfigTest.php b/tests/Zend/Oauth/ConfigTest.php index 57ad1bec4..4aebe5166 100644 --- a/tests/Zend/Oauth/ConfigTest.php +++ b/tests/Zend/Oauth/ConfigTest.php @@ -33,6 +33,11 @@ */ class Zend_Oauth_ConfigTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Oauth_Config|mixed + */ + protected $config; + public function setUp() { $this->config = new Zend_Oauth_Config(); diff --git a/tests/Zend/Oauth/Oauth/Http/AccessTokenTest.php b/tests/Zend/Oauth/Oauth/Http/AccessTokenTest.php index d8cadf30a..9aed88760 100644 --- a/tests/Zend/Oauth/Oauth/Http/AccessTokenTest.php +++ b/tests/Zend/Oauth/Oauth/Http/AccessTokenTest.php @@ -33,6 +33,10 @@ */ class Zend_Oauth_Http_AccessTokenTest extends PHPUnit_Framework_TestCase { + /** + * @var \Test_Http_Utility_39745|mixed + */ + protected $stubHttpUtility; protected $stubConsumer = null; diff --git a/tests/Zend/Oauth/Oauth/Http/RequestTokenTest.php b/tests/Zend/Oauth/Oauth/Http/RequestTokenTest.php index d510a2dd8..85bd0f961 100644 --- a/tests/Zend/Oauth/Oauth/Http/RequestTokenTest.php +++ b/tests/Zend/Oauth/Oauth/Http/RequestTokenTest.php @@ -33,6 +33,15 @@ */ class Zend_Oauth_Http_RequestTokenTest extends PHPUnit_Framework_TestCase { + /** + * @var \Test_Consumer_32874b|mixed + */ + protected $stubConsumer2; + + /** + * @var \Test_Http_Utility_32874|mixed + */ + protected $stubHttpUtility; protected $stubConsumer = null; diff --git a/tests/Zend/OpenId/Provider/User/SessionTest.php b/tests/Zend/OpenId/Provider/User/SessionTest.php index 510bc11d5..b06dd74a8 100644 --- a/tests/Zend/OpenId/Provider/User/SessionTest.php +++ b/tests/Zend/OpenId/Provider/User/SessionTest.php @@ -36,6 +36,16 @@ */ class Zend_OpenId_Provider_User_SessionTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_OpenId_Provider_User_Session|mixed + */ + protected $_user1; + + /** + * @var \Zend_OpenId_Provider_User_Session|mixed + */ + protected $_user2; + const USER1 = "test_user1"; const USER2 = "test_user2"; diff --git a/tests/Zend/Queue/Custom/DbForUpdate.php b/tests/Zend/Queue/Custom/DbForUpdate.php index 8d335c205..a87e18527 100644 --- a/tests/Zend/Queue/Custom/DbForUpdate.php +++ b/tests/Zend/Queue/Custom/DbForUpdate.php @@ -40,6 +40,8 @@ */ class Custom_DbForUpdate extends Zend_Queue_Adapter_Db { + protected $_msg_table; + /** * Return the first element in the queue * diff --git a/tests/Zend/Queue/QueueTest.php b/tests/Zend/Queue/QueueTest.php index ac2f7d9db..936668e87 100644 --- a/tests/Zend/Queue/QueueTest.php +++ b/tests/Zend/Queue/QueueTest.php @@ -47,6 +47,16 @@ */ class Zend_Queue_QueueTest extends PHPUnit_Framework_TestCase { + /** + * @var array + */ + protected $config; + + /** + * @var \Zend_Queue|mixed + */ + protected $queue; + protected function setUp() { // Test Zend_Config diff --git a/tests/Zend/Service/AkismetTest.php b/tests/Zend/Service/AkismetTest.php index 723eab993..6996e300a 100644 --- a/tests/Zend/Service/AkismetTest.php +++ b/tests/Zend/Service/AkismetTest.php @@ -41,6 +41,21 @@ */ class Zend_Service_AkismetTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Service_Akismet|mixed + */ + protected $akismet; + + /** + * @var \Zend_Http_Client_Adapter_Test|mixed + */ + protected $adapter; + + /** + * @var array|mixed + */ + protected $comment; + public function setUp() { $this->akismet = new Zend_Service_Akismet('somebogusapikey', 'http://framework.zend.com/wiki/'); diff --git a/tests/Zend/Service/Amazon/Authentication/V1Test.php b/tests/Zend/Service/Amazon/Authentication/V1Test.php index c91138412..3042d7678 100644 --- a/tests/Zend/Service/Amazon/Authentication/V1Test.php +++ b/tests/Zend/Service/Amazon/Authentication/V1Test.php @@ -34,6 +34,11 @@ class Zend_Service_Amazon_Authentication_V1Test extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Service_Amazon_Authentication_V1|null|mixed + */ + protected $Zend_Service_Amazon_Authentication_V1; + /** * @var Zend_Service_Amazon_Authentication_V2 */ diff --git a/tests/Zend/Service/Amazon/Ec2/AvailabilityzonesTest.php b/tests/Zend/Service/Amazon/Ec2/AvailabilityzonesTest.php index ceba97cce..8f157c9e5 100644 --- a/tests/Zend/Service/Amazon/Ec2/AvailabilityzonesTest.php +++ b/tests/Zend/Service/Amazon/Ec2/AvailabilityzonesTest.php @@ -39,6 +39,11 @@ class Zend_Service_Amazon_Ec2_AvailabilityzonesTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Http_Client_Adapter_Test|mixed + */ + protected $adapter; + /** * @var Zend_Service_Amazon_Ec2_Availabilityzones */ diff --git a/tests/Zend/Service/Amazon/Ec2/CloudWatchTest.php b/tests/Zend/Service/Amazon/Ec2/CloudWatchTest.php index aad4063fa..c43755958 100644 --- a/tests/Zend/Service/Amazon/Ec2/CloudWatchTest.php +++ b/tests/Zend/Service/Amazon/Ec2/CloudWatchTest.php @@ -39,6 +39,11 @@ class Zend_Service_Amazon_Ec2_CloudWatchTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Http_Client_Adapter_Test|mixed + */ + protected $adapter; + /** * @var Zend_Service_Amazon_Ec2_CloudWatch */ diff --git a/tests/Zend/Service/Amazon/Ec2/EbsTest.php b/tests/Zend/Service/Amazon/Ec2/EbsTest.php index 3e7d34213..56321408a 100644 --- a/tests/Zend/Service/Amazon/Ec2/EbsTest.php +++ b/tests/Zend/Service/Amazon/Ec2/EbsTest.php @@ -39,6 +39,11 @@ class Zend_Service_Amazon_Ec2_EbsTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Http_Client_Adapter_Test|mixed + */ + protected $adapter; + /** * @var Zend_Service_Amazon_Ec2_Ebs */ diff --git a/tests/Zend/Service/Amazon/Ec2/ElasticipTest.php b/tests/Zend/Service/Amazon/Ec2/ElasticipTest.php index 731fd5f2b..6dc3fa394 100644 --- a/tests/Zend/Service/Amazon/Ec2/ElasticipTest.php +++ b/tests/Zend/Service/Amazon/Ec2/ElasticipTest.php @@ -39,6 +39,11 @@ class Zend_Service_Amazon_Ec2_ElasticipTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Http_Client_Adapter_Test|mixed + */ + protected $adapter; + /** * @var Zend_Service_Amazon_Ec2_Elasticip */ diff --git a/tests/Zend/Service/Amazon/Ec2/ImageTest.php b/tests/Zend/Service/Amazon/Ec2/ImageTest.php index f9516e540..ea7925c25 100644 --- a/tests/Zend/Service/Amazon/Ec2/ImageTest.php +++ b/tests/Zend/Service/Amazon/Ec2/ImageTest.php @@ -40,6 +40,11 @@ class Zend_Service_Amazon_Ec2_ImageTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Http_Client_Adapter_Test|mixed + */ + protected $adapter; + /** * @var Zend_Service_Amazon_Ec2_Image */ diff --git a/tests/Zend/Service/Amazon/Ec2/InstanceReservedTest.php b/tests/Zend/Service/Amazon/Ec2/InstanceReservedTest.php index 199c7a4aa..250466381 100644 --- a/tests/Zend/Service/Amazon/Ec2/InstanceReservedTest.php +++ b/tests/Zend/Service/Amazon/Ec2/InstanceReservedTest.php @@ -41,6 +41,11 @@ class InstanceReservedTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Http_Client_Adapter_Test|mixed + */ + protected $adapter; + /** * @var Zend_Service_Amazon_Ec2_Instance_Reserved */ diff --git a/tests/Zend/Service/Amazon/Ec2/InstanceTest.php b/tests/Zend/Service/Amazon/Ec2/InstanceTest.php index a8f1fbe23..25c5ad8c6 100644 --- a/tests/Zend/Service/Amazon/Ec2/InstanceTest.php +++ b/tests/Zend/Service/Amazon/Ec2/InstanceTest.php @@ -40,6 +40,11 @@ class Zend_Service_Amazon_Ec2_InstanceTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Http_Client_Adapter_Test|mixed + */ + protected $adapter; + /** * @var Zend_Service_Amazon_Ec2_Instance */ diff --git a/tests/Zend/Service/Amazon/Ec2/InstanceWindowsTest.php b/tests/Zend/Service/Amazon/Ec2/InstanceWindowsTest.php index 85c7dfc8b..26dec87bb 100644 --- a/tests/Zend/Service/Amazon/Ec2/InstanceWindowsTest.php +++ b/tests/Zend/Service/Amazon/Ec2/InstanceWindowsTest.php @@ -41,6 +41,11 @@ class InstanceWindowsTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Http_Client_Adapter_Test|mixed + */ + protected $adapter; + /** * @var Zend_Service_Amazon_Ec2_Instance_Windows */ diff --git a/tests/Zend/Service/Amazon/Ec2/KeypairTest.php b/tests/Zend/Service/Amazon/Ec2/KeypairTest.php index 883087d44..be0be98b2 100644 --- a/tests/Zend/Service/Amazon/Ec2/KeypairTest.php +++ b/tests/Zend/Service/Amazon/Ec2/KeypairTest.php @@ -39,6 +39,11 @@ class Zend_Service_Amazon_Ec2_KeypairTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Http_Client_Adapter_Test|mixed + */ + protected $adapter; + /** * @var Zend_Service_Amazon_Ec2_Keypair */ diff --git a/tests/Zend/Service/Amazon/Ec2/RegionTest.php b/tests/Zend/Service/Amazon/Ec2/RegionTest.php index e495bb295..995cb0324 100644 --- a/tests/Zend/Service/Amazon/Ec2/RegionTest.php +++ b/tests/Zend/Service/Amazon/Ec2/RegionTest.php @@ -39,6 +39,16 @@ class Zend_Service_Amazon_Ec2_RegionTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Http_Client_Adapter_Test|mixed + */ + protected $adapter; + + /** + * @var null + */ + protected $Zend_Service_Amazon_Ec2_Availabilityzones; + /** * @var Zend_Service_Amazon_Ec2_Availabilityzones */ diff --git a/tests/Zend/Service/Amazon/Ec2/SecuritygroupsTest.php b/tests/Zend/Service/Amazon/Ec2/SecuritygroupsTest.php index bc98b68d4..6fa3507d3 100644 --- a/tests/Zend/Service/Amazon/Ec2/SecuritygroupsTest.php +++ b/tests/Zend/Service/Amazon/Ec2/SecuritygroupsTest.php @@ -39,6 +39,11 @@ class Zend_Service_Amazon_Ec2_SecuritygroupsTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Http_Client_Adapter_Test|mixed + */ + protected $adapter; + /** * @var Zend_Service_Amazon_Ec2_Securitygroups */ diff --git a/tests/Zend/Service/Amazon/S3/OnlineTest.php b/tests/Zend/Service/Amazon/S3/OnlineTest.php index c69e78bb8..cbe40aa65 100644 --- a/tests/Zend/Service/Amazon/S3/OnlineTest.php +++ b/tests/Zend/Service/Amazon/S3/OnlineTest.php @@ -43,6 +43,21 @@ */ class Zend_Service_Amazon_S3_OnlineTest extends PHPUnit_Framework_TestCase { + /** + * @var string|mixed + */ + protected $_nosuchbucket; + + /** + * @var mixed + */ + protected $_bucket; + + /** + * @var string|mixed + */ + protected $_bucketEu; + /** * Reference to Amazon service consumer object * diff --git a/tests/Zend/Service/Amazon/S3/StreamTest.php b/tests/Zend/Service/Amazon/S3/StreamTest.php index 41dd909fe..b8cd198c3 100644 --- a/tests/Zend/Service/Amazon/S3/StreamTest.php +++ b/tests/Zend/Service/Amazon/S3/StreamTest.php @@ -42,6 +42,36 @@ */ class Zend_Service_Amazon_S3_StreamTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Service_Amazon_S3|mixed + */ + protected $_amazon; + + /** + * @var string + */ + protected $_nosuchbucket; + + /** + * @var \Zend_Http_Client_Adapter_Socket|mixed + */ + protected $_httpClientAdapterSocket; + + /** + * @var mixed + */ + protected $_bucket; + + /** + * @var string|mixed + */ + protected $_bucketName; + + /** + * @var string|mixed + */ + protected $_fileName; + /** * Sets up this test case * diff --git a/tests/Zend/Service/Amazon/Sqs/OnlineTest.php b/tests/Zend/Service/Amazon/Sqs/OnlineTest.php index eedf610c2..16d5da5cc 100644 --- a/tests/Zend/Service/Amazon/Sqs/OnlineTest.php +++ b/tests/Zend/Service/Amazon/Sqs/OnlineTest.php @@ -35,6 +35,11 @@ */ class Zend_Service_Amazon_Sqs_OnlineTest extends PHPUnit_Framework_TestCase { + /** + * @var mixed + */ + protected $_queue_name; + /** * Reference to Amazon service consumer object * diff --git a/tests/Zend/Service/Rackspace/Servers/OnlineTest.php b/tests/Zend/Service/Rackspace/Servers/OnlineTest.php index 036402ad3..d14b25d12 100644 --- a/tests/Zend/Service/Rackspace/Servers/OnlineTest.php +++ b/tests/Zend/Service/Rackspace/Servers/OnlineTest.php @@ -32,6 +32,11 @@ */ class Zend_Service_Rackspace_Servers_OnlineTest extends PHPUnit_Framework_TestCase { + /** + * @var string + */ + protected $filename; + /** * Reference to Rackspace Servers object * diff --git a/tests/Zend/Service/StrikeIron/BaseTest.php b/tests/Zend/Service/StrikeIron/BaseTest.php index a93277a22..e7858784f 100644 --- a/tests/Zend/Service/StrikeIron/BaseTest.php +++ b/tests/Zend/Service/StrikeIron/BaseTest.php @@ -36,6 +36,16 @@ */ class Zend_Service_StrikeIron_BaseTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Service_StrikeIron_BaseTest_MockSoapClient|mixed + */ + protected $soapClient; + + /** + * @var \Zend_Service_StrikeIron_Base|mixed + */ + protected $base; + public function setUp() { $this->soapClient = new Zend_Service_StrikeIron_BaseTest_MockSoapClient; diff --git a/tests/Zend/Service/StrikeIron/NoSoapTest.php b/tests/Zend/Service/StrikeIron/NoSoapTest.php index f5e46aa09..48711301d 100644 --- a/tests/Zend/Service/StrikeIron/NoSoapTest.php +++ b/tests/Zend/Service/StrikeIron/NoSoapTest.php @@ -38,6 +38,10 @@ */ class Zend_Service_StrikeIron_NoSoapTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Service_StrikeIron_BaseTest_MockSoapClient|mixed + */ + protected $soapClient; public function setUp() { diff --git a/tests/Zend/Service/StrikeIron/SalesUseTaxBasicTest.php b/tests/Zend/Service/StrikeIron/SalesUseTaxBasicTest.php index ea49ee587..401d78e04 100644 --- a/tests/Zend/Service/StrikeIron/SalesUseTaxBasicTest.php +++ b/tests/Zend/Service/StrikeIron/SalesUseTaxBasicTest.php @@ -42,6 +42,16 @@ */ class Zend_Service_StrikeIron_SalesUseTaxBasicTest extends PHPUnit_Framework_TestCase { + /** + * @var \stdclass|mixed + */ + protected $soapClient; + + /** + * @var \Zend_Service_StrikeIron_SalesUseTaxBasic|mixed + */ + protected $service; + public function setUp() { $this->soapClient = new stdclass(); diff --git a/tests/Zend/Service/StrikeIron/StrikeIronTest.php b/tests/Zend/Service/StrikeIron/StrikeIronTest.php index e739db41c..5917c2667 100644 --- a/tests/Zend/Service/StrikeIron/StrikeIronTest.php +++ b/tests/Zend/Service/StrikeIron/StrikeIronTest.php @@ -36,6 +36,21 @@ */ class Zend_Service_StrikeIron_StrikeIronTest extends PHPUnit_Framework_TestCase { + /** + * @var \stdclass|mixed + */ + protected $soapClient; + + /** + * @var array|mixed + */ + protected $options; + + /** + * @var \Zend_Service_StrikeIron|mixed + */ + protected $strikeIron; + public function setUp() { // stub out SOAPClient instance @@ -108,6 +123,7 @@ public function testFactoryMergesItsOptionsWithConstructorOptions() */ class Zend_Service_StrikeIron_StrikeIronTest_StubbedBase { + public $options; public function __construct($options) { $this->options = $options; diff --git a/tests/Zend/Service/StrikeIron/USAddressVerificationTest.php b/tests/Zend/Service/StrikeIron/USAddressVerificationTest.php index 62a5acf6f..712db504d 100644 --- a/tests/Zend/Service/StrikeIron/USAddressVerificationTest.php +++ b/tests/Zend/Service/StrikeIron/USAddressVerificationTest.php @@ -42,6 +42,16 @@ */ class Zend_Service_StrikeIron_USAddressVerificationTest extends PHPUnit_Framework_TestCase { + /** + * @var \stdclass|mixed + */ + protected $soapClient; + + /** + * @var \Zend_Service_StrikeIron_USAddressVerification|mixed + */ + protected $service; + public function setUp() { $this->soapClient = new stdclass(); diff --git a/tests/Zend/Service/StrikeIron/ZipCodeInfoTest.php b/tests/Zend/Service/StrikeIron/ZipCodeInfoTest.php index cd2d5f5a1..4c4db8088 100644 --- a/tests/Zend/Service/StrikeIron/ZipCodeInfoTest.php +++ b/tests/Zend/Service/StrikeIron/ZipCodeInfoTest.php @@ -42,6 +42,16 @@ */ class Zend_Service_StrikeIron_ZipCodeInfoTest extends PHPUnit_Framework_TestCase { + /** + * @var \stdclass|mixed + */ + protected $soapClient; + + /** + * @var \Zend_Service_StrikeIron_ZipCodeInfo|mixed + */ + protected $service; + public function setUp() { $this->soapClient = new stdclass(); diff --git a/tests/Zend/Service/WindowsAzure/SessionHandlerTest.php b/tests/Zend/Service/WindowsAzure/SessionHandlerTest.php index f2cbef9ad..c5270ef15 100644 --- a/tests/Zend/Service/WindowsAzure/SessionHandlerTest.php +++ b/tests/Zend/Service/WindowsAzure/SessionHandlerTest.php @@ -36,6 +36,7 @@ */ class Zend_Service_WindowsAzure_SessionHandlerTest extends PHPUnit_Framework_TestCase { + protected $status; protected static $uniqId = 0; diff --git a/tests/Zend/Stdlib/CallbackHandlerTest.php b/tests/Zend/Stdlib/CallbackHandlerTest.php index d8dc15b2d..aae60d6d7 100644 --- a/tests/Zend/Stdlib/CallbackHandlerTest.php +++ b/tests/Zend/Stdlib/CallbackHandlerTest.php @@ -39,6 +39,16 @@ */ class Zend_Stdlib_CallbackHandlerTest extends PHPUnit_Framework_TestCase { + /** + * @var mixed|mixed[] + */ + protected $args; + + /** + * @var bool + */ + protected $error; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/Stdlib/PriorityQueueTest.php b/tests/Zend/Stdlib/PriorityQueueTest.php index 7881fb497..899ede60e 100644 --- a/tests/Zend/Stdlib/PriorityQueueTest.php +++ b/tests/Zend/Stdlib/PriorityQueueTest.php @@ -35,6 +35,11 @@ */ class Zend_Stdlib_PriorityQueueTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Stdlib_PriorityQueue|mixed + */ + protected $queue; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/Stdlib/SplPriorityQueueTest.php b/tests/Zend/Stdlib/SplPriorityQueueTest.php index 59012c31b..353fa21ec 100644 --- a/tests/Zend/Stdlib/SplPriorityQueueTest.php +++ b/tests/Zend/Stdlib/SplPriorityQueueTest.php @@ -36,6 +36,11 @@ */ class Zend_Stdlib_SplPriorityQueueTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Stdlib_SplPriorityQueue|mixed + */ + protected $queue; + public static function main() { $suite = new PHPUnit_Framework_TestSuite(__CLASS__); diff --git a/tests/Zend/Test/PHPUnit/ControllerTestCaseTest.php b/tests/Zend/Test/PHPUnit/ControllerTestCaseTest.php index e7b6fede2..3f332af81 100644 --- a/tests/Zend/Test/PHPUnit/ControllerTestCaseTest.php +++ b/tests/Zend/Test/PHPUnit/ControllerTestCaseTest.php @@ -50,6 +50,11 @@ */ class Zend_Test_PHPUnit_ControllerTestCaseTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_Test_PHPUnit_ControllerTestCaseTest_Concrete|mixed + */ + protected $testCase; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/Test/PHPUnit/Db/TestCaseTest.php b/tests/Zend/Test/PHPUnit/Db/TestCaseTest.php index f56581c04..d3bed1e69 100644 --- a/tests/Zend/Test/PHPUnit/Db/TestCaseTest.php +++ b/tests/Zend/Test/PHPUnit/Db/TestCaseTest.php @@ -38,6 +38,8 @@ */ class Zend_Test_PHPUnit_Db_TestCaseTest extends Zend_Test_PHPUnit_DatabaseTestCase { + protected $databaseTester; + /** * Contains a Database Connection * diff --git a/tests/Zend/Validate/EmailAddressTest.php b/tests/Zend/Validate/EmailAddressTest.php index cedf90000..19b5fd928 100644 --- a/tests/Zend/Validate/EmailAddressTest.php +++ b/tests/Zend/Validate/EmailAddressTest.php @@ -39,6 +39,11 @@ */ class Zend_Validate_EmailAddressTest extends PHPUnit_Framework_TestCase { + /** + * @var bool + */ + protected $multipleOptionsDetected; + /** * Default instance created for all test methods * diff --git a/tests/Zend/ValidateTest.php b/tests/Zend/ValidateTest.php index aa8b25efa..cb51b6766 100644 --- a/tests/Zend/ValidateTest.php +++ b/tests/Zend/ValidateTest.php @@ -45,6 +45,11 @@ */ class Zend_ValidateTest extends PHPUnit_Framework_TestCase { + /** + * @var bool + */ + protected $error; + /** * @var bool */ diff --git a/tests/Zend/View/Helper/AttributeJsEscapingTest.php b/tests/Zend/View/Helper/AttributeJsEscapingTest.php index 76df3933e..3501e2c5d 100644 --- a/tests/Zend/View/Helper/AttributeJsEscapingTest.php +++ b/tests/Zend/View/Helper/AttributeJsEscapingTest.php @@ -42,6 +42,16 @@ */ class Zend_View_Helper_AttributeJsEscapingTest extends PHPUnit_Framework_TestCase { + /** + * @var \Zend_View|mixed + */ + protected $view; + + /** + * @var \Zend_View_Helper_FormSubmit|mixed + */ + protected $helper; + /** * Runs the test methods of this class. * diff --git a/tests/Zend/XmlRpc/ClientTest.php b/tests/Zend/XmlRpc/ClientTest.php index 4d476618c..b454186e9 100644 --- a/tests/Zend/XmlRpc/ClientTest.php +++ b/tests/Zend/XmlRpc/ClientTest.php @@ -44,6 +44,16 @@ */ class Zend_XmlRpc_ClientTest extends PHPUnit_Framework_TestCase { + /** + * @var mixed|\PHPUnit\Framework\MockObject\MockObject&\Zend_XmlRpc_Client_ServerIntrospection + */ + protected $mockedIntrospector; + + /** + * @var mixed|\PHPUnit\Framework\MockObject\MockObject&\Zend_Http_Client + */ + protected $mockedHttpClient; + /** * @var Zend_Http_Client_Adapter_Abstract */ diff --git a/tests/Zend/XmlRpc/Request/HttpTest.php b/tests/Zend/XmlRpc/Request/HttpTest.php index 727b06d21..803f332ce 100644 --- a/tests/Zend/XmlRpc/Request/HttpTest.php +++ b/tests/Zend/XmlRpc/Request/HttpTest.php @@ -40,6 +40,21 @@ */ class Zend_XmlRpc_Request_HttpTest extends PHPUnit_Framework_TestCase { + /** + * @var string|mixed + */ + protected $xml; + + /** + * @var \Zend_XmlRpc_Request_Http|mixed + */ + protected $request; + + /** + * @var array|mixed + */ + protected $server; + /** * Runs the test methods of this class. * @@ -184,6 +199,15 @@ public function testHttpRequestGeneratesFaultIfReadFromPhpInputFails() class Zend_XmlRpc_Request_HttpTest_Extension extends Zend_XmlRpc_Request_Http { + /** + * @var string|null + */ + public $method; + /** + * @var array + */ + public $params; + public function __construct($method = null, $params = null) { $this->method = $method;