petrknap/optional

Optional (like in Java Platform SE 8 but in PHP)
84,030
Install
composer require petrknap/optional
Latest Version:v3.5.2
PHP:>=8.1
License:LGPL-3.0-or-later
Last Updated:Jul 11, 2026
Links: GitHub  ·  Packagist
Maintainer: petrknap

Optional (like in Java Platform SE 8 but in PHP)

A container object which may or may not contain a non-null value. If a value is present, isPresent() will return true and get() will return the value.

Additional methods that depend on the presence or absence of a contained value are provided, such as orElse() (return a default value if value not present) and ifPresent() (execute a block of code if the value is present).

This is a value-based class; use of identity-sensitive operations (including reference equality (==), identity hash code, or synchronization) on instances of Optional may have unpredictable results and should be avoided.

-- Optional (Java Platform SE 8)

It is an easy way to make sure that everyone has to check if they have (not) received a null.

Basic usage

use PetrKnap\Optional\Optional;

/** @var Optional<string> $stringOption */
$stringOption = Optional::of('data');
if ($stringOption->isPresent()) {
    echo $stringOption->get();
}

Optional::ofFalsable(tmpfile())->ifPresent(function ($tmpFile): void {
    fwrite($tmpFile, 'data');
    fclose($tmpFile);
}, else: fn () => print('tmpfile() failed'));

Creating your own typed optional

The library provides specialized traits to help you implement strictly typed wrappers with full static analysis support.

Quick Overview

  1. NonGenericOptional trait for fixed specific types like bool or string (see OptionalString class)
    use PetrKnap\Optional\Optional;
    use PetrKnap\Optional\NonGenericOptional;
    
    /** @extends Optional<bool> */
    final class OptionalBool extends Optional
    {
        use NonGenericOptional;
    
        protected static function isSupported(mixed $value): bool
        {
            return is_bool($value);
        }
    }
    
  2. GenericOptional trait for generic structures like array (see OptionalArray class)
  3. AbstractOptional trait for extendable factory optionals (use this when you need a base class for other typed optionals, see OptionalObject class)

Type registration

You can register your custom typed optionals into TypedOptional helper. Once registered, calling the base Optional class will automatically look up and return the correct specific subclass if the value matches its criteria.

use PetrKnap\Optional\TypedOptional;
use PetrKnap\Optional\Optional;

TypedOptional::register(OptionalBool::class);

printf(
    "Class name of optional which holds `true` is `%s`.\n",
    get_class(Optional::of(true)),
);
Class name of optional which holds `true` is `OptionalBool`.

Run composer require petrknap/optional to install it. You can support this project via donation. The project is licensed under the terms of the LGPL-3.0-or-later.

Related Packages

vkovic/laravel-custom-casts

Make your own custom cast type for Laravel model attributes

374,918 218
sunaoka/laravel-postgres-range

PostgreSQL Range Types for Laravel.

12,265 3
oro/doctrine-extensions

Doctrine Extensions for MySQL and PostgreSQL.

12,361,598 343