Skip to content

Commit 213d017

Browse files
committed
ecs --fix
1 parent b3575ec commit 213d017

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

src/Fqsen.php

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@ final class Fqsen
3333
/**
3434
* Initializes the object.
3535
*
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.
3937
*/
4038
public function __construct(string $fqsen)
4139
{
@@ -64,8 +62,6 @@ public function __construct(string $fqsen)
6462

6563
/**
6664
* converts this class to string.
67-
*
68-
* @return string
6965
*/
7066
public function __toString(): string
7167
{
@@ -74,8 +70,6 @@ public function __toString(): string
7470

7571
/**
7672
* Returns the name of the element without path.
77-
*
78-
* @return string
7973
*/
8074
public function getName(): string
8175
{

src/Location.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ final class Location
2727

2828
/**
2929
* 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
3330
*/
3431
public function __construct(int $lineNumber, int $columnNumber = 0)
3532
{
@@ -39,8 +36,6 @@ public function __construct(int $lineNumber, int $columnNumber = 0)
3936

4037
/**
4138
* Returns the line number that is covered by this location.
42-
*
43-
* @return integer
4439
*/
4540
public function getLineNumber(): int
4641
{
@@ -49,8 +44,6 @@ public function getLineNumber(): int
4944

5045
/**
5146
* Returns the column number (character position on a line) for this location object.
52-
*
53-
* @return integer
5447
*/
5548
public function getColumnNumber(): int
5649
{

0 commit comments

Comments
 (0)