conceptbyte / null-object
A Null Object for PHP.
Installs: 37
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 3
Forks: 0
Open Issues: 0
Type:package
Requires
- php: >=5.5.9
Requires (Dev)
- phpunit/phpunit: ^5.4
This package is not auto-updated.
Last update: 2025-01-04 21:08:39 UTC
README
Allows the user to call the null object which handles all calls silently and returns sensible defaults. The returned object can be type cast to return the following values:
- String - ""
- Integer - 0
- Float or Real - 0.0
- Array - []
- Boolean - False
Installation
Run the following to install:
composer require conceptbyte/null-object
Usage
The null object can be created in one of the following methods:
- Named constructor:
NullObject::create()
- Helper function:
no()
Both will return an instance of the class. Calls to any methods or members on this class will return the defaults as mentioned in the section above.
Example
(string) NullObject::create()->xyz; // "" (bool) NullObject::create()->abc(); // false (int) no()->xyz; // 0 (float) no()->abc(); // 0.0
Quirks
PHP does not allow modifying the behaviour of casting a class to boolean. A simple hack is to use the SimpleXMLElement class which can return false when passed an empty XML tag.