We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 066432a + d5266ac commit ddf0daaCopy full SHA for ddf0daa
src/Comment/Comment.php
@@ -7,10 +7,20 @@
7
8
class Comment implements Renderable
9
{
10
+ /**
11
+ * @var int
12
+ */
13
protected $iLineNo;
14
15
16
+ * @var string
17
18
protected $sComment;
19
20
21
+ * @param string $sComment
22
+ * @param int $iLineNo
23
24
public function __construct($sComment = '', $iLineNo = 0)
25
26
$this->sComment = $sComment;
@@ -35,6 +45,8 @@ public function getLineNo()
35
45
36
46
/**
37
47
* @param string $sComment
48
+ *
49
+ * @return void
38
50
*/
39
51
public function setComment($sComment)
40
52
0 commit comments