PHPackages                             takemo101/simple-result-type - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. takemo101/simple-result-type

ActiveLibrary

takemo101/simple-result-type
============================

Simple Result Type

v0.1.4(3y ago)1577MITPHPPHP ^8.1

Since Mar 23Pushed 3y ago1 watchersCompare

[ Source](https://github.com/takemo101/simple-result-type)[ Packagist](https://packagist.org/packages/takemo101/simple-result-type)[ Docs](https://github.com/takemo101/simple-result-type)[ RSS](/packages/takemo101-simple-result-type/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (5)Dependencies (2)Versions (7)Used By (0)

The Simple Result Type
======================

[](#the-simple-result-type)

[![Testing](https://github.com/takemo101/simple-result-type/actions/workflows/testing.yml/badge.svg)](https://github.com/takemo101/simple-result-type/actions/workflows/testing.yml)[![PHPStan](https://github.com/takemo101/simple-result-type/actions/workflows/phpstan.yml/badge.svg)](https://github.com/takemo101/simple-result-type/actions/workflows/phpstan.yml)[![Validate Composer](https://github.com/takemo101/simple-result-type/actions/workflows/composer.yml/badge.svg)](https://github.com/takemo101/simple-result-type/actions/workflows/composer.yml)

The Simple Result Type simply returns the processing result as an object.
Enjoy!

Example
-------

[](#example)

This is a basic usage example.

```
use Takemo101\SimpleResultType\ {
    Resulter,
    Error,
    Success,
};
use Exception;

// Create a Success object with the Success method of the Resulter class.
$data = Resulter::success(10)
    // Create a Result object with a new value by the map method.
    ->map(fn(int $result) => $result * 2)
    // Get the success result by the success method.
    ->success();

var_dump($data); // int(20)

// Create an Error object with the error method of the Resulter class.
$data = Resulter::error(10)
    // Create an Error object with a new value by the mapError method.
    ->mapError(fn(int $result) => $result * 2)
    // Get the error result by the error method.
    ->error();

var_dump($data); // int(20)

// If you generate an Error with a value that implements Throwable,
// an exception will be raised.
Resulter::error(new Exception('error'))
    ->exception();

// You can get the output according to the result by the output method.
$data = Resulter::success(10)
    ->map(fn(int $result) => $result * 2)
    ->output(
        success: fn(int $result) => $result * 100,
        error: fn(int $result) => $result * 1,
    );

var_dump($data); // int(2000)
```

This is an example of using to determine whether the result is success or error.

```
use Takemo101\SimpleResultType\ {
    Error,
    Success,
};

// You can also create objects from the Error and Success classes.
$result = Error::create('error');

var_dump($result->isError()); // bool(true)
var_dump($result->isSuccess()); // bool(false)

$result = Success::create('success');

// You can also judge by Type enum.
$data = match ($result->type()) {
    Type::Success => $result->success(),
    Type::Error => $result->error(),
};

var_dump($data); // string(7) "success"
```

Try operations that may fail and produce results.

```
use Takemo101\SimpleResultType\Resulter;
use Takemo101\SimpleResultType\Support\ {
    CatchType,
    NotCatchType,
};
use Exception;
use LogicException;
use RuntimeException;
use InvalidArgumentException;

// If an exception occurs, the result will be returned as Error.
$result = Resulter::try(function() {
    throw new Exception('error');
}); // Error

// By returning the success value, the result will be returned as Success.
$result = Resulter::try(function() {
    return 10;
}); // Success

// No error is output except for the exception specified in the CatchType Attribute class.
$result = Resulter::try(
    #[CatchType(
        RuntimeException::class,
        InvalidArgumentException::class,
    )]
    function() {
        throw new RuntimeException('error');
    }
); // Error

var_dump($result->isError()); // bool(true)

// No error is output for the exception specified in the NotCatchType Attribute class.
Resulter::try(
    #[NotCatchType(
        RuntimeException::class,
        InvalidArgumentException::class,
    )]
    function() {
        throw new RuntimeException('error');
    }
); // Exception occurs.
```

Exception handling by ErrorHandler class.

```
use Takemo101\SimpleResultType\Resulter;
use Takemo101\SimpleResultType\Support\ErrorHandler;
use LogicException;
use RuntimeException;

// If an exception occurs, the Error wrapped in the ErrorHandler class is returned.
$result = Resulter::trial(function() {
    throw new RuntimeException('error');
}); // Error

// ErrorHandler can be used for processing according to the type of exception
$data = $result->error()
    ->catch(fn (RuntimeException $e) => $e->getMessage())
    ->catch(fn (LogicException $e) => $e->getMessage())
    ->exception(); // or ->call();

var_dump($data); // string(5) "error"
```

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 52.4% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~20 days

Total

5

Last Release

1428d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2139dffa0ff324f185e4afd76e1bfad1ff5270c4cf3eabe278dc353ea16aa84e?d=identicon)[takemo101](/maintainers/takemo101)

---

Top Contributors

[![takemo101](https://avatars.githubusercontent.com/u/66665053?v=4)](https://github.com/takemo101 "takemo101 (11 commits)")[![hayama-kei](https://avatars.githubusercontent.com/u/73094141?v=4)](https://github.com/hayama-kei "hayama-kei (10 commits)")

---

Tags

phppackageresult

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/takemo101-simple-result-type/health.svg)

```
[![Health](https://phpackages.com/badges/takemo101-simple-result-type/health.svg)](https://phpackages.com/packages/takemo101-simple-result-type)
```

###  Alternatives

[larastan/larastan

Larastan - Discover bugs in your code without running it. A phpstan/phpstan extension for Laravel

6.4k43.5M5.2k](/packages/larastan-larastan)[nunomaduro/termwind

It's like Tailwind CSS, but for the console.

2.5k239.8M285](/packages/nunomaduro-termwind)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
