File tree Expand file tree Collapse file tree 3 files changed +5
-17
lines changed Expand file tree Collapse file tree 3 files changed +5
-17
lines changed Original file line number Diff line number Diff line change @@ -21,15 +21,11 @@ interface Element
21
21
{
22
22
/**
23
23
* Returns the Fqsen of the element.
24
- *
25
- * @return Fqsen
26
24
*/
27
- public function getFqsen ();
25
+ public function getFqsen (): Fqsen ;
28
26
29
27
/**
30
28
* Returns the name of the element.
31
- *
32
- * @return string
33
29
*/
34
- public function getName ();
30
+ public function getName (): string ;
35
31
}
Original file line number Diff line number Diff line change @@ -21,22 +21,16 @@ interface File
21
21
{
22
22
/**
23
23
* Returns the content of the file as a string.
24
- *
25
- * @return string
26
24
*/
27
- public function getContents ();
25
+ public function getContents (): string ;
28
26
29
27
/**
30
28
* Returns md5 hash of the file.
31
- *
32
- * @return string
33
29
*/
34
- public function md5 ();
30
+ public function md5 (): string ;
35
31
36
32
/**
37
33
* Returns an relative path to the file.
38
- *
39
- * @return string
40
34
*/
41
- public function path ();
35
+ public function path (): string ;
42
36
}
Original file line number Diff line number Diff line change @@ -21,8 +21,6 @@ interface Project
21
21
{
22
22
/**
23
23
* Returns the name of the project.
24
- *
25
- * @return string
26
24
*/
27
25
public function getName (): string ;
28
26
}
You can’t perform that action at this time.
0 commit comments