Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/medad.corals.io/vendor/spatie/enum/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/medad.corals.io/vendor/spatie/enum/UPGRADING.md
## To v3

v3 is a major simplification of the package, and focuses only on the core enum functionality. The base enum implementation isn't changed, but there are changes to value/index and label/name mappings.

- The enum `index` is removed. Enum values can be remapped by implementing the `values` method. Please refer to the [README](./README.md) for more information.
- What used to be called `value` in v2 is now simply called `label`. Labels can be mapped like values, by implementing the `labels` method. Please refer to the [README](./README.md) for more information.
- The `isEqual` method has been renamed to `equals`, and now only accept `Enum` objects, no more raw strings or ints. 
- You can now also pass multiple enums to the `equals` method. Please refer to the [README](./README.md) for more information.
- Enum specific methods aren't supported anymore. If you want that kind of functionality, please look at [`spatie/laravel-model-states`](https://github.com/spatie/laravel-model-states), or the state pattern in general.
- Static equal methods are removed

Spamworldpro Mini