File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ abstract class Result
9
9
*
10
10
* @return \PhpOption\Option
11
11
*/
12
- public abstract function success ();
12
+ abstract public function success ();
13
13
14
14
/**
15
15
* Get the error value, if possible.
@@ -28,14 +28,14 @@ public function getSuccess()
28
28
*
29
29
* @return \Dotenv\Regex\Result
30
30
*/
31
- public abstract function mapSuccess (callable $ f );
31
+ abstract public function mapSuccess (callable $ f );
32
32
33
33
/**
34
34
* Get the error option value.
35
35
*
36
36
* @return \PhpOption\Option
37
37
*/
38
- public abstract function error ();
38
+ abstract public function error ();
39
39
40
40
/**
41
41
* Get the error value, if possible.
@@ -54,5 +54,5 @@ public function getError()
54
54
*
55
55
* @return \Dotenv\Regex\Result
56
56
*/
57
- public abstract function mapError (callable $ f );
57
+ abstract public function mapError (callable $ f );
58
58
}
You can’t perform that action at this time.
0 commit comments