Completed
Push — master ( b4af2d...85fa4e )
by Andrii
02:31
created
src/history/Commit.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -108,6 +108,9 @@  discard block
 block discarded – undo
108 108
         return $this->_comments;
109 109
     }
110 110
 
111
+    /**
112
+     * @param string $value
113
+     */
111 114
     public function setDate($value)
112 115
     {
113 116
         $timestamp = strtotime($value);
@@ -123,6 +126,9 @@  discard block
 block discarded – undo
123 126
         return $this->_date ? date('Y-m-d', $this->_date) : null;
124 127
     }
125 128
 
129
+    /**
130
+     * @param string $value
131
+     */
126 132
     public function setSubject($value)
127 133
     {
128 134
         $this->_subject = $value;
@@ -130,11 +136,17 @@  discard block
 block discarded – undo
130 136
         return $this;
131 137
     }
132 138
 
139
+    /**
140
+     * @return string
141
+     */
133 142
     public function getSubject()
134 143
     {
135 144
         return $this->_subject;
136 145
     }
137 146
 
147
+    /**
148
+     * @param string $value
149
+     */
138 150
     public function setAuthor($value)
139 151
     {
140 152
         $this->_author = $value;
Please login to merge, or discard this patch.