Skip to content

Commit 420a2a8

Browse files
Fixed CS
1 parent f61ce48 commit 420a2a8

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

src/Regex/Regex.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ public static function split($pattern, $subject)
7878
*
7979
* @template V
8080
*
81-
* @param callable(string): V $operation
82-
* @param string $subject
81+
* @param callable(string):V $operation
82+
* @param string $subject
8383
*
8484
* @return \Dotenv\Result\Result<V,string>
8585
*/

src/Result/Error.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function success()
5858
*
5959
* @template S
6060
*
61-
* @param callable(T): S $f
61+
* @param callable(T):S $f
6262
*
6363
* @return \Dotenv\Result\Result<S,E>
6464
*/
@@ -82,7 +82,7 @@ public function error()
8282
*
8383
* @template F
8484
*
85-
* @param callable(E): F $f
85+
* @param callable(E):F $f
8686
*
8787
* @return \Dotenv\Result\Result<T,F>
8888
*/

src/Result/Result.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function getSuccess()
3232
*
3333
* @template S
3434
*
35-
* @param callable(T): S $f
35+
* @param callable(T):S $f
3636
*
3737
* @return \Dotenv\Result\Result<S,E>
3838
*/
@@ -62,7 +62,7 @@ public function getError()
6262
*
6363
* @template F
6464
*
65-
* @param callable(E): F $f
65+
* @param callable(E):F $f
6666
*
6767
* @return \Dotenv\Result\Result<T,F>
6868
*/

src/Result/Success.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function success()
5858
*
5959
* @template S
6060
*
61-
* @param callable(T): S $f
61+
* @param callable(T):S $f
6262
*
6363
* @return \Dotenv\Result\Result<S,E>
6464
*/
@@ -82,7 +82,7 @@ public function error()
8282
*
8383
* @template F
8484
*
85-
* @param callable(E): F $f
85+
* @param callable(E):F $f
8686
*
8787
* @return \Dotenv\Result\Result<T,F>
8888
*/

0 commit comments

Comments
 (0)