We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6b7d4d commit 8ff28a3Copy full SHA for 8ff28a3
UPGRADING.md
@@ -93,3 +93,14 @@ This is no longer needed. Now The `getRuleDefinition()` method has been removed:
93
94
If you need description yourself to understand rule after many months, use the common place for documentation - docblock above class.
95
96
+
97
+### 3. `SetListInterface` was removed
98
99
+The deprecated `SetListInterface` was removed, if you created your own list just remove the Interface from it:
100
101
+```diff
102
+-use Rector\Set\Contract\SetListInterface;
103
104
+-final class YourSetList implements SetListInterface
105
++final class YourSetList
106
+```
0 commit comments