Completed
Push — 3.0 ( 146ff5...da916b )
by Olivier
04:40
created
lib/Hooks.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 class Hooks
20 20
 {
21 21
 	/**
22
-	 * @param Core|Binding\CoreBindings $app
22
+	 * @param Core $app
23 23
 	 *
24 24
 	 * @return FileStorageIndex
25 25
 	 */
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 	}
32 32
 
33 33
 	/**
34
-	 * @param Core|Binding\CoreBindings $app
34
+	 * @param Core $app
35 35
 	 *
36 36
 	 * @return FileStorage
37 37
 	 */
Please login to merge, or discard this patch.
lib/Storage/FileStorage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
 	 *
106 106
 	 * If a file has no reference left it is deleted.
107 107
 	 *
108
-	 * @param $key_or_id_or_uuid_or_hash
108
+	 * @param string $key_or_id_or_uuid_or_hash
109 109
 	 */
110 110
 	public function release($key_or_id_or_uuid_or_hash)
111 111
 	{
Please login to merge, or discard this patch.
lib/Storage/FileStorageIndex.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
 	/**
119 119
 	 * Deletes key(s) from the index.
120 120
 	 *
121
-	 * @param IndexKey|int|string $key_or_id_or_uuid_or_hash
121
+	 * @param IndexKey $key_or_id_or_uuid_or_hash
122 122
 	 *
123 123
 	 * @throws \InvalidArgumentException if `$key_or_id_or_uuid_or_hash` is not of the expected type.
124 124
 	 */
Please login to merge, or discard this patch.
lib/Storage/IndexKey.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
 	 *
70 70
 	 * @param string $key
71 71
 	 *
72
-	 * @return array
72
+	 * @return string[]
73 73
 	 */
74 74
 	static private function parse_key($key)
75 75
 	{
Please login to merge, or discard this patch.