@@ -9,20 +9,18 @@ interface ReadableInterface
9
9
/**
10
10
* Returns the resource stream of the source.
11
11
*
12
- * @return resource Returns the streaming contents of a file.
13
- *
14
- * @throws SourceExceptionInterface May occur during the inability to
15
- * open or some operations with the resource stream.
12
+ * @return resource returns the streaming contents of a file
13
+ * @throws SourceExceptionInterface may occur during the inability to
14
+ * open or some operations with the resource stream
16
15
*/
17
16
public function getStream ();
18
17
19
18
/**
20
19
* Returns the contents of the source.
21
20
*
22
- * @return string Returns the string contents of a file.
23
- *
24
- * @throws SourceExceptionInterface May occur when it is not possible to
25
- * read source's data and/or convert it to a string.
21
+ * @return string returns the string contents of a file
22
+ * @throws SourceExceptionInterface may occur when it is not possible to
23
+ * read source's data and/or convert it to a string
26
24
*/
27
25
public function getContents (): string ;
28
26
@@ -32,10 +30,9 @@ public function getContents(): string;
32
30
* If the value of the source content changes, the hash value will
33
31
* also be changed.
34
32
*
35
- * @return non-empty-string Returns hash of a file.
36
- *
37
- * @throws SourceExceptionInterface May occur when it is not possible to
38
- * convert object state information into a hash.
33
+ * @return non-empty-string returns hash of a file
34
+ * @throws SourceExceptionInterface may occur when it is not possible to
35
+ * convert object state information into a hash
39
36
*/
40
37
public function getHash (): string ;
41
38
}
0 commit comments