Completed
Push — stable8 ( 8f80be...83db25 )
by
unknown
21:28
created
lib/public/search/pagedprovider.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -59,6 +59,7 @@
 block discarded – undo
59 59
 	 * @param string $query
60 60
 	 * @param int $page pages start at page 1
61 61
 	 * @param int $size, 0 = SIZE_ALL
62
+	 * @param integer $size
62 63
 	 * @return array An array of OCP\Search\Result's
63 64
 	 * @since 8.0.0
64 65
 	 */
Please login to merge, or discard this patch.
lib/public/template.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -100,8 +100,8 @@
 block discarded – undo
100 100
 /**
101 101
  * Return the relative date in relation to today. Returns something like "last hour" or "two month ago"
102 102
  * @param int $timestamp unix timestamp
103
- * @param boolean $dateOnly
104
- * @return \OC_L10N_String human readable interpretation of the timestamp
103
+ * @param integer $dateOnly
104
+ * @return string human readable interpretation of the timestamp
105 105
  *
106 106
  * @deprecated 8.0.0 Use \OCP\Template::relative_modified_date() instead
107 107
  */
Please login to merge, or discard this patch.
lib/repair/innodb.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 	}
54 54
 
55 55
 	/**
56
-	 * @param \Doctrine\DBAL\Connection $connection
56
+	 * @param \OCP\IDBConnection $connection
57 57
 	 * @return string[]
58 58
 	 */
59 59
 	private function getAllMyIsamTables($connection) {
Please login to merge, or discard this patch.
tests/lib/appframework/controller/ControllerTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@
 block discarded – undo
32 32
 
33 33
 class ChildController extends Controller {
34 34
 
35
+	/**
36
+	 * @param Request $request
37
+	 */
35 38
 	public function __construct($appName, $request) {
36 39
 		parent::__construct($appName, $request);
37 40
 		$this->registerResponder('tom', function ($respone) {
Please login to merge, or discard this patch.
tests/lib/appframework/db/EntityTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -42,6 +42,9 @@
 block discarded – undo
42 42
 	protected $testId;
43 43
 	protected $preName;
44 44
 
45
+	/**
46
+	 * @param string $name
47
+	 */
45 48
 	public function __construct($name=null){
46 49
 		$this->addType('testId', 'integer');		
47 50
 		$this->name = $name;
Please login to merge, or discard this patch.
tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -72,6 +72,10 @@
 block discarded – undo
72 72
 	}
73 73
 
74 74
 
75
+	/**
76
+	 * @param boolean $isLoggedIn
77
+	 * @param boolean $isAdminUser
78
+	 */
75 79
 	private function getMiddleware($isLoggedIn, $isAdminUser){
76 80
 		return new SecurityMiddleware(
77 81
 			$this->request,
Please login to merge, or discard this patch.
tests/lib/appframework/utility/ControllerMethodReflectorTest.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -92,7 +92,6 @@  discard block
 block discarded – undo
92 92
 
93 93
 	/**
94 94
 	 * @Annotation
95
-	 * @param int $test
96 95
 	 */
97 96
 	public function testReadTypeIntAnnotations(){
98 97
 		$reader = new ControllerMethodReflector();
@@ -107,7 +106,6 @@  discard block
 block discarded – undo
107 106
 
108 107
 	/**
109 108
 	 * @Annotation
110
-	 * @param double $test something special
111 109
 	 */
112 110
 	public function testReadTypeDoubleAnnotations(){
113 111
 		$reader = new ControllerMethodReflector();
@@ -121,7 +119,6 @@  discard block
 block discarded – undo
121 119
 
122 120
 	/**
123 121
 	 * @Annotation
124
-	 * @param 	string  $foo
125 122
 	 */
126 123
 	public function testReadTypeWhitespaceAnnotations(){
127 124
 		$reader = new ControllerMethodReflector();
Please login to merge, or discard this patch.
tests/lib/contacts/localadressbook.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -46,6 +46,10 @@
 block discarded – undo
46 46
 
47 47
 class SimpleUserForTesting implements \OCP\IUser {
48 48
 
49
+	/**
50
+	 * @param string $uid
51
+	 * @param string $displayName
52
+	 */
49 53
 	public function __construct($uid, $displayName) {
50 54
 
51 55
 		$this->uid = $uid;
Please login to merge, or discard this patch.
tests/lib/datetimeformatter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -37,6 +37,9 @@
 block discarded – undo
37 37
 		$this->formatter = new \OC\DateTimeFormatter(new \DateTimeZone('UTC'), new \OC_L10N('lib', 'en'));
38 38
 	}
39 39
 
40
+	/**
41
+	 * @param integer $time
42
+	 */
40 43
 	protected function getTimestampAgo($time, $seconds = 0, $minutes = 0, $hours = 0, $days = 0, $years = 0) {
41 44
 		return $time - $seconds - $minutes * 60 - $hours * 3600 - $days * 24*3600 - $years * 365*24*3600;
42 45
 	}
Please login to merge, or discard this patch.