blessing/rejection

Rejection is an object that indicates you are rejecting.

Maintainers

Package info

github.com/bs-community/rejection

pkg:composer/blessing/rejection

Statistics

Installs: 3 324

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 0

v1.4.0 2025-06-29 13:22 UTC

This package is auto-updated.

Last update: 2026-03-01 00:13:38 UTC


README

Rejection is an object that indicates you are rejecting.

We used this in Blessing Skin Server for plugins.

💿 Install

Run Composer:

composer require blessing/rejection

🔨 Usage

Create a rejection

use Blessing\Rejection;

$rejection = new Rejection('reason');

You can pass optional second argument to constructor:

$rejection = new Rejection('reason', ['name' => '']);

Retrieve reason

$rejection->getReason();

Retrieve data:

$rejection->getData();

If your data is an array, you pass a key:

$rejection = new Rejection('reason', ['name' => '']);
$rejection->getData('name');

📄 License

MIT License (c) The Blessing Skin Team