@@ -12,18 +12,16 @@ Class SemVersion
12
12
#### Methods
13
13
14
14
- ` -> ` [ ` __construct() ` ] ( #method-__construct ) - _ SemVersion constructor._
15
+ - ` -> ` [ ` isStable() ` ] ( #method-isstable )
15
16
- ` -> ` [ ` getMajorNum() ` ] ( #method-getmajornum )
16
17
- ` -> ` [ ` getMinorNum() ` ] ( #method-getminornum )
17
18
- ` -> ` [ ` getPatchNum() ` ] ( #method-getpatchnum )
18
19
- ` -> ` [ ` getPreReleaseString() ` ] ( #method-getprereleasestring )
19
- - ` -> ` [ ` getBuildString() ` ] ( #method-getbuildstring )
20
20
- ` -> ` [ ` toNormal() ` ] ( #method-tonormal )
21
21
- ` -> ` [ ` __toString() ` ] ( #method-__tostring )
22
22
- ` -> ` [ ` incMajorNum() ` ] ( #method-incmajornum )
23
23
- ` -> ` [ ` incMinorNum() ` ] ( #method-incminornum )
24
24
- ` -> ` [ ` incPatchNum() ` ] ( #method-incpatchnum )
25
- - ` -> ` [ ` incBuildString() ` ] ( #method-incbuildstring )
26
- - ` -> ` [ ` incPreRelease() ` ] ( #method-incprerelease )
27
25
- ` -> ` [ ` satisfies() ` ] ( #method-satisfies )
28
26
29
27
---
@@ -39,6 +37,15 @@ SemVersion constructor.
39
37
40
38
---
41
39
40
+ <a name =" method-isstable " ></a >
41
+
42
+ ### isStable()
43
+ ``` php
44
+ isStable(): bool
45
+ ```
46
+
47
+ ---
48
+
42
49
<a name =" method-getmajornum " ></a >
43
50
44
51
### getMajorNum()
@@ -75,15 +82,6 @@ getPreReleaseString(): string
75
82
76
83
---
77
84
78
- <a name =" method-getbuildstring " ></a >
79
-
80
- ### getBuildString()
81
- ``` php
82
- getBuildString(): string
83
- ```
84
-
85
- ---
86
-
87
85
<a name =" method-tonormal " ></a >
88
86
89
87
### toNormal()
@@ -106,7 +104,7 @@ __toString(): string
106
104
107
105
### incMajorNum()
108
106
``` php
109
- incMajorNum(string $preRelease ): semver\SemVersion
107
+ incMajorNum(): semver\SemVersion
110
108
```
111
109
112
110
---
@@ -115,7 +113,7 @@ incMajorNum(string $preRelease): semver\SemVersion
115
113
116
114
### incMinorNum()
117
115
``` php
118
- incMinorNum(string $preRelease ): semver\SemVersion
116
+ incMinorNum(): semver\SemVersion
119
117
```
120
118
121
119
---
@@ -124,25 +122,7 @@ incMinorNum(string $preRelease): semver\SemVersion
124
122
125
123
### incPatchNum()
126
124
``` php
127
- incPatchNum(string $preRelease): semver\SemVersion
128
- ```
129
-
130
- ---
131
-
132
- <a name =" method-incbuildstring " ></a >
133
-
134
- ### incBuildString()
135
- ``` php
136
- incBuildString(): semver\SemVersion
137
- ```
138
-
139
- ---
140
-
141
- <a name =" method-incprerelease " ></a >
142
-
143
- ### incPreRelease()
144
- ``` php
145
- incPreRelease(): semver\SemVersion
125
+ incPatchNum(): semver\SemVersion
146
126
```
147
127
148
128
---
0 commit comments