File tree Expand file tree Collapse file tree 1 file changed +18
-3
lines changed Expand file tree Collapse file tree 1 file changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -16,19 +16,34 @@ After the inspection is completed, you are given a list of changes that have occ
16
16
- Function added -> **MINOR**
17
17
- Function removed -> **MAJOR**
18
18
- Function parameter mismatch -> **MAJOR**
19
+ - Function implementation changed -> **PATCH**
19
20
- Classes
20
21
- Class added -> **MINOR**
21
22
- Class removed -> **MAJOR**
22
23
- Class method added -> **MINOR**
23
24
- Class method removed -> **MAJOR**
24
25
- Class method parameter mismatch -> **MAJOR**
26
+ - Class method implementation changed -> **PATCH**
25
27
26
28
## Example
27
29
28
30
``` bash
29
- php bin/php-semver-checker compare --before-source before/ --after-source after/
30
-
31
-
31
+ php bin/php-semver-checker compare --before-source laravel-4.2.15 --after-source laravel-4.2.16
32
+
33
+ Suggested semantic versioning change: MAJOR
34
+
35
+ CLASS
36
+ LEVEL LOCATION REASON
37
+ MAJOR src/Illuminate/Database/Eloquent/Model.php#2550 Illuminate/Database/Eloquent/Model::getMutatorMethod Method has been removed.
38
+ PATCH src/Illuminate/Database/Eloquent/Model.php#243 __construct Method implementation changed.
39
+ PATCH src/Illuminate/Database/Eloquent/Model.php#322 addGlobalScope Method implementation changed.
40
+ PATCH src/Illuminate/Database/Eloquent/Model.php#333 hasGlobalScope Method implementation changed.
41
+ PATCH src/Illuminate/Database/Eloquent/Model.php#344 getGlobalScope Method implementation changed.
42
+ PATCH src/Illuminate/Database/Eloquent/Model.php#357 getGlobalScopes Method implementation changed.
43
+ [... cut for brievity ...]
44
+
45
+ FUNCTION
46
+ LEVEL LOCATION REASON
32
47
```
33
48
34
49
## License
You can’t perform that action at this time.
0 commit comments