w3lifer/php-response-interface

PHP Response Interface

1.0.3 2025-02-09 18:47 UTC

This package is auto-updated.

Last update: 2025-03-30 12:35:56 UTC


README

Installation

composer require w3lifer/php-response-interface

Usage

PhpResponseInterface::getFalseResponse(); // ['success' => false, 'errors' => []
PhpResponseInterface::getFalseResponse(['Some error']); // ['success' => false, 'errors' => ['Some error']]

PhpResponseInterface::getTrueResponse(); // ['success' => true, 'data' => []]
PhpResponseInterface::getTrueResponse(['Some data']); // ['success' => true, 'data' => ['Some data']]

Tests

make tests