Skip to content

Commit bda7a5f

Browse files
committed
Fix GH actions
1 parent 56841d2 commit bda7a5f

File tree

2 files changed

+13
-16
lines changed

2 files changed

+13
-16
lines changed

src/ReadableInterface.php

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,18 @@ interface ReadableInterface
99
/**
1010
* Returns the resource stream of the source.
1111
*
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
1615
*/
1716
public function getStream();
1817

1918
/**
2019
* Returns the contents of the source.
2120
*
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
2624
*/
2725
public function getContents(): string;
2826

@@ -32,10 +30,9 @@ public function getContents(): string;
3230
* If the value of the source content changes, the hash value will
3331
* also be changed.
3432
*
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
3936
*/
4037
public function getHash(): string;
4138
}

src/SourceFactoryInterface.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
interface SourceFactoryInterface
88
{
99
/**
10-
* @param mixed $source Arbitrary source reference from which you can
11-
* create a {@see ReadableInterface} instance.
10+
* @param mixed $source arbitrary source reference from which you can
11+
* create a {@see ReadableInterface} instance
1212
*
13-
* @throws SourceExceptionInterface In case of an error in creating the
14-
* source object.
13+
* @throws SourceExceptionInterface in case of an error in creating the
14+
* source object
1515
*/
1616
public function create($source): ReadableInterface;
1717
}

0 commit comments

Comments
 (0)