Completed
Push — master ( 3c3d5c...7960db )
by Fwolf
03:28
created
tests/FwlibTest/Auth/AuthenticationTraitTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 {
16 16
     /**
17 17
      * @param   UserSessionInterface    $userSession
18
-     * @return  MockObject | AuthenticationInterface
18
+     * @return  AuthenticationInterface | AuthenticationInterface
19 19
      */
20 20
     protected function buildMock($userSession)
21 21
     {
Please login to merge, or discard this patch.
tests/FwlibTest/Base/ServiceContainerTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 class ServiceContainerTest extends PHPUnitTestCase
13 13
 {
14 14
     /**
15
-     * @return MockObject | ServiceContainer
15
+     * @return ServiceContainer | ServiceContainer
16 16
      */
17 17
     protected function buildMock()
18 18
     {
Please login to merge, or discard this patch.
tests/FwlibTest/Html/Generator/AbstractElementTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 {
17 17
     /**
18 18
      * @param   string[] $methods
19
-     * @param   array    $params
19
+     * @param   string[]    $params
20 20
      * @return  MockObject|AbstractElement
21 21
      */
22 22
     protected function buildMock(array $methods = [], array $params = [])
Please login to merge, or discard this patch.
tests/FwlibTest/Html/Generator/Component/Form/RendererTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 {
20 20
     /**
21 21
      * @param   string[] $methods
22
-     * @return  MockObject|Form
22
+     * @return  \Fwlib\Html\Generator\ElementCollection
23 23
      */
24 24
     protected function buildFormMock(array $methods = null)
25 25
     {
Please login to merge, or discard this patch.
tests/FwlibTest/Html/Generator/Component/Form/ValidatorRendererTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 {
17 17
     /**
18 18
      * @param   string[] $methods
19
-     * @return  MockObject|Form
19
+     * @return  Form
20 20
      */
21 21
     protected function buildFormMock(array $methods = null)
22 22
     {
Please login to merge, or discard this patch.
tests/FwlibTest/Html/ListView/FitterTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 class FitterTest extends PHPUnitTestCase
15 15
 {
16 16
     /**
17
-     * @return MockObject | Fitter
17
+     * @return Fitter | Fitter
18 18
      */
19 19
     protected function buildMock()
20 20
     {
Please login to merge, or discard this patch.
tests/FwlibTest/Html/ListView/RendererTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 {
19 19
     /**
20 20
      * @param   string[]    $methods
21
-     * @return  MockObject | Renderer
21
+     * @return  Renderer | Renderer
22 22
      */
23 23
     protected function buildMock(array $methods = null)
24 24
     {
Please login to merge, or discard this patch.
func/config.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
  * @param	string	$content	Content to download
21 21
  * @param	string	$filename	Download file name, send to client, not path on server.
22 22
  * @param	string	$mime		Mime type of file
23
- * @return	boolean
23
+ * @return	null|boolean
24 24
  */
25 25
 function Download ($content, $filename = '', $mime = 'application/force-download') {
26 26
 	list($usec, $sec) = explode(" ", microtime());
Please login to merge, or discard this patch.