diff options
Diffstat (limited to 'vendor/jfcherng/php-diff/UPGRADING/UPGRADING_v4.md')
-rw-r--r-- | vendor/jfcherng/php-diff/UPGRADING/UPGRADING_v4.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vendor/jfcherng/php-diff/UPGRADING/UPGRADING_v4.md b/vendor/jfcherng/php-diff/UPGRADING/UPGRADING_v4.md new file mode 100644 index 0000000..308d1a2 --- /dev/null +++ b/vendor/jfcherng/php-diff/UPGRADING/UPGRADING_v4.md @@ -0,0 +1,5 @@ +## Upgrading to v4 + +- `Jfcherng\Diff\Utility\SequenceMatcher` becomes [a new package](https://packagist.org/packages/jfcherng/php-sequence-matcher) by the namespace of `Jfcherng\Diff\SequenceMatcher`. +- Factories under `Jfcherng\Diff\Utility\` are moved to `Jfcherng\Diff\Factory\`. For example, `Jfcherng\Diff\Utility\RendererFactory` is now `Jfcherng\Diff\Factory\RendererFactory`. +- Non-abstract classes are no longer inheritable as they are added with `final` keywords. (This allows me to do more internal changes without causing possible BC breaks.) |