File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -22,17 +22,17 @@ public function getMajorVersion(): int
2222 return Version::getMajorVersion ();
2323 }
2424
25- public static function getVersion (): string
25+ public function getVersion (): string
2626 {
2727 return Version::getVersion ();
2828 }
2929
30- public static function getRevision (): string
30+ public function getRevision (): string
3131 {
3232 return Version::getRevision ();
3333 }
3434
35- public static function getPlatformVersion (): ?string
35+ public function getPlatformVersion (): ?string
3636 {
3737 return Version::getPlatformVersion ();
3838 }
Original file line number Diff line number Diff line change 1616interface VersionResolverContractInterface
1717{
1818 public function getMajorVersion (): int ;
19- public static function getVersion (): string ;
20- public static function getRevision (): string ;
21- public static function getPlatformVersion (): ?string ;
19+ public function getVersion (): string ;
20+ public function getRevision (): string ;
21+ public function getPlatformVersion (): ?string ;
2222}
You can’t perform that action at this time.
0 commit comments