Completed
Push — master ( 808823...246322 )
by Andrii
02:33
created
src/history/AbstractRenderer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
  */
19 19
 abstract class AbstractRenderer
20 20
 {
21
+    /**
22
+     * @param History $value
23
+     */
21 24
     public function setHistory($value)
22 25
     {
23 26
         $this->_history = $value;
Please login to merge, or discard this patch.
src/history/MarkdownRenderer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -46,6 +46,9 @@
 block discarded – undo
46 46
         return $this->renderObjects('renderLink', $this->getHistory()->getLinks());
47 47
     }
48 48
 
49
+    /**
50
+     * @param string $method
51
+     */
49 52
     public function renderObjects($method, $objects)
50 53
     {
51 54
         $res = [];
Please login to merge, or discard this patch.