File tree Expand file tree Collapse file tree 2 files changed +1
-14
lines changed Expand file tree Collapse file tree 2 files changed +1
-14
lines changed Original file line number Diff line number Diff line change @@ -33,9 +33,7 @@ final class Fqsen
33
33
/**
34
34
* Initializes the object.
35
35
*
36
- * @param string $fqsen
37
- *
38
- * @throws \InvalidArgumentException when $fqsen is not matching the format.
36
+ * @throws InvalidArgumentException when $fqsen is not matching the format.
39
37
*/
40
38
public function __construct (string $ fqsen )
41
39
{
@@ -64,8 +62,6 @@ public function __construct(string $fqsen)
64
62
65
63
/**
66
64
* converts this class to string.
67
- *
68
- * @return string
69
65
*/
70
66
public function __toString (): string
71
67
{
@@ -74,8 +70,6 @@ public function __toString(): string
74
70
75
71
/**
76
72
* Returns the name of the element without path.
77
- *
78
- * @return string
79
73
*/
80
74
public function getName (): string
81
75
{
Original file line number Diff line number Diff line change @@ -27,9 +27,6 @@ final class Location
27
27
28
28
/**
29
29
* Initializes the location for an element using its line number in the file and optionally the column number.
30
- *
31
- * @param int $lineNumber
32
- * @param int $columnNumber
33
30
*/
34
31
public function __construct (int $ lineNumber , int $ columnNumber = 0 )
35
32
{
@@ -39,8 +36,6 @@ public function __construct(int $lineNumber, int $columnNumber = 0)
39
36
40
37
/**
41
38
* Returns the line number that is covered by this location.
42
- *
43
- * @return integer
44
39
*/
45
40
public function getLineNumber (): int
46
41
{
@@ -49,8 +44,6 @@ public function getLineNumber(): int
49
44
50
45
/**
51
46
* Returns the column number (character position on a line) for this location object.
52
- *
53
- * @return integer
54
47
*/
55
48
public function getColumnNumber (): int
56
49
{
You can’t perform that action at this time.
0 commit comments