LuminFire / Laravel-FileMaker-Error-Helper by brilliantpackages

A package to convert FileMaker Pro error codes to standard HTTP status codes and messages.
577
0
1
Package Data
Maintainer Username: brilliantpackages
Maintainer Contact: help@luminfire.com (LuminFire)
Package Create Date: 2019-07-23
Package Last Update: 2023-12-22
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-11 03:25:08
Package Statistics
Total Downloads: 577
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

This is a service provider for Laravel/Lumen to help look up FileMaker Pro error codes.

Installation

Run composer require brilliantpackages/laravel-fmerrorhelper.

Lumen

Add this line to bootstrap/app.php to register the service provider:

$app->register(BrilliantPackages\LaravelFmErrorHelper\LaravelFmErrorHelperServiceProvider::class);

Usage

This package should auto-register itself and the FMError facade for use.

Method 1: Use the facade:

FMError::getErrorCode($fmCode, $fallback);

Method 2:

Include the namespace at the top of the file:

use BrilliantPackages\LaravelFmErrorHelper\Helper as FMError;

# Use the getErrorCode/getErrorMessage function as needed:
$code = FMError::getErrorCode($fmCode, $fallback);
$message = FMError::getErrorMessage($fmCode, $fallback);