Download the PHP package webhappens/conditional-methods without Composer
On this page you can find all versions of the php package webhappens/conditional-methods. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download webhappens/conditional-methods
More information about webhappens/conditional-methods
Files in webhappens/conditional-methods
Package conditional-methods
Short Description Make method calls conditional by simply appending If or Unless when you call them.
License MIT
Homepage https://github.com/webhappens/conditional-methods
Informations about the package conditional-methods
Conditional methods
Make method calls conditional by simply appending If or Unless when you call them. Conditional methods allow you to pass a condition to determine whether they should be run or not, removing the need to wrap them inside logic. This is especially useful when you are chaining.
- Installation
- If
- Unless
Installation
Install via composer:
Insert the ConditionalMethods
trait into your class:
If your class is already using the __call
method, add the following to it:
If
Append If
to the end of any method call and pass your condition as the first argument.
This replaces the need to do something like:
Unless
Unless
works in the same way as If
except the condition is inverted.
Append Unless
to the end of any method call and pass your condition as the first argument.
Credits
- Sam Leicester: [email protected]
- Ben Gurney: [email protected]
- Big thanks to the guys over at Spatie for the inspiration on this through their laravel-html package ❤️
- All Contributors
Our Str
class is just a copy of some functions from Laravel's Str
helper.
License
The MIT License (MIT). Please see License File for more information.