Completed
Pull Request — master (#1163)
by Grégoire
03:34 queued 01:09
created
Filesystem/Replicate.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -47,6 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
     /**
49 49
      * {@inheritdoc}
50
+     * @param string $key
50 51
      */
51 52
     public function delete($key)
52 53
     {
@@ -76,6 +77,7 @@  discard block
 block discarded – undo
76 77
 
77 78
     /**
78 79
      * {@inheritdoc}
80
+     * @param string $key
79 81
      */
80 82
     public function mtime($key)
81 83
     {
@@ -92,6 +94,7 @@  discard block
 block discarded – undo
92 94
 
93 95
     /**
94 96
      * {@inheritdoc}
97
+     * @param string $key
95 98
      */
96 99
     public function exists($key)
97 100
     {
@@ -100,6 +103,8 @@  discard block
 block discarded – undo
100 103
 
101 104
     /**
102 105
      * {@inheritdoc}
106
+     * @param string $key
107
+     * @param string $content
103 108
      */
104 109
     public function write($key, $content, array $metadata = null)
105 110
     {
@@ -131,6 +136,7 @@  discard block
 block discarded – undo
131 136
 
132 137
     /**
133 138
      * {@inheritdoc}
139
+     * @param string $key
134 140
      */
135 141
     public function read($key)
136 142
     {
@@ -139,6 +145,8 @@  discard block
 block discarded – undo
139 145
 
140 146
     /**
141 147
      * {@inheritdoc}
148
+     * @param string $key
149
+     * @param string $new
142 150
      */
143 151
     public function rename($key, $new)
144 152
     {
@@ -243,6 +251,7 @@  discard block
 block discarded – undo
243 251
 
244 252
     /**
245 253
      * {@inheritdoc}
254
+     * @param string $key
246 255
      */
247 256
     public function isDirectory($key)
248 257
     {
Please login to merge, or discard this patch.
Twig/Extension/MediaExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@
 block discarded – undo
200 200
     }
201 201
 
202 202
     /**
203
-     * @param mixed $media
203
+     * @param MediaInterface $media
204 204
      *
205 205
      * @return MediaInterface|null|bool
206 206
      */
Please login to merge, or discard this patch.