Skip to content

Commit 9453caa

Browse files
committed
Release 1.12.8
1 parent c6ec566 commit 9453caa

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

library/Zend/Application/Module/Autoloader.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ class Zend_Application_Module_Autoloader extends Zend_Loader_Autoloader_Resource
3939
* Constructor
4040
*
4141
* @param array|Zend_Config $options
42-
* @return void
4342
*/
4443
public function __construct($options)
4544
{

library/Zend/Application/Module/Bootstrap.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ abstract class Zend_Application_Module_Bootstrap
4848
/**
4949
* Constructor
5050
*
51-
* @param Zend_Application|Zend_Application_Bootstrap_Bootstrapper $application
52-
* @return void
51+
* @param Zend_Application|Zend_Application_Bootstrap_Bootstrapper $application
5352
*/
5453
public function __construct($application)
5554
{

library/Zend/Application/Resource/Db.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public function getAdapter()
8888
/**
8989
* Set the adapter params
9090
*
91-
* @param string $adapter
91+
* @param array $params
9292
* @return Zend_Application_Resource_Db
9393
*/
9494
public function setParams(array $params)
@@ -110,7 +110,7 @@ public function getParams()
110110
/**
111111
* Set whether to use this as default table adapter
112112
*
113-
* @param boolean $defaultTableAdapter
113+
* @param bool $isDefaultTableAdapter
114114
* @return Zend_Application_Resource_Db
115115
*/
116116
public function setIsDefaultTableAdapter($isDefaultTableAdapter)
@@ -122,7 +122,7 @@ public function setIsDefaultTableAdapter($isDefaultTableAdapter)
122122
/**
123123
* Is this adapter the default table adapter?
124124
*
125-
* @return void
125+
* @return bool
126126
*/
127127
public function isDefaultTableAdapter()
128128
{
@@ -160,6 +160,8 @@ public function init()
160160
if (null !== ($db = $this->getDbAdapter())) {
161161
return $db;
162162
}
163+
164+
return null;
163165
}
164166

165167
/**

library/Zend/Application/Resource/Frontcontroller.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ class Zend_Application_Resource_Frontcontroller extends Zend_Application_Resourc
4646
* Initialize Front Controller
4747
*
4848
* @return Zend_Controller_Front
49+
* @throws Zend_Application_Exception
4950
*/
5051
public function init()
5152
{

library/Zend/Application/Resource/Modules.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ class Zend_Application_Resource_Modules extends Zend_Application_Resource_Resour
4646
* Constructor
4747
*
4848
* @param mixed $options
49-
* @return void
5049
*/
5150
public function __construct($options = null)
5251
{

library/Zend/Application/Resource/Resource.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ interface Zend_Application_Resource_Resource
3737
* Must take an optional single argument, $options.
3838
*
3939
* @param mixed $options
40-
* @return void
4140
*/
4241
public function __construct($options = null);
4342

library/Zend/Application/Resource/Session.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ public function setSaveHandler($saveHandler)
6262
* Get session save handler
6363
*
6464
* @return Zend_Session_SaveHandler_Interface
65+
* @throws Zend_Application_Resource_Exception
6566
*/
6667
public function getSaveHandler()
6768
{

0 commit comments

Comments
 (0)