-
-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade guide and deprecations for 3.1
- Loading branch information
1 parent
cf1b8b4
commit 0f1429c
Showing
3 changed files
with
9 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,15 @@ | ||
UPGRADE 3.x | ||
=========== | ||
|
||
UPGRADE FROM 3.0 to 3.1 | ||
======================= | ||
|
||
## Deprecated AbstractBlockServiceTest class | ||
|
||
The `Tests\Block\AbstractBlockServiceTest` class is deprecated. Use `Test\AbstractBlockServiceTestCase` instead. | ||
|
||
### Tests | ||
|
||
All files under the ``Tests`` directory are now correctly handled as internal test classes. | ||
You can't extend them anymore, because they are only loaded when running internal tests. | ||
All files under the ``Tests`` directory are now correctly handled as internal test classes. | ||
You can't extend them anymore, because they are only loaded when running internal tests. | ||
More information can be found in the [composer docs](https://getcomposer.org/doc/04-schema.md#autoload-dev). |