withinboredom / null-cast
Casting, but with null!
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/withinboredom/null-cast
Requires
- php: >=8.1
Requires (Dev)
- pestphp/pest: ^2.33
README
When using strict types, null is often erased when casting, introducing subtle bugs.
This library allows you to replace your casts with these simple functions that retain null,
but otherwise perform the desired cast.
Installation
composer require withinboredom/null-cast
Usage
use function Withinboredom\NullCast\boolval; use function Withinboredom\NullCast\floatval; use function Withinboredom\NullCast\intval; use function Withinboredom\NullCast\stringval; boolval('true') === true; boolval(null) === null; floatval('12.34') === 12.34; floatval(null) === null; intval(true) === 1; intval(null) === null; stringval(123) === '123'; stringval(null) === null;