mggflow/linksflow

Installs: 11

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/mggflow/linksflow

v2.0.0 2023-03-06 19:15 UTC

This package is auto-updated.

Last update: 2025-10-07 01:02:54 UTC


README

About

This package is core of backend logic of LINKSFLOW service.

Usage

To install:

composer require mggflow/linksflow

Example of creation Link:

// Fields of Link as (object)[...].
// Implements Interfaces/LinkData.
$linkData = new LinkData();

$createLink = new CreateLink($linkData, $link);

try {
    $link->id = $createLink->create();
} catch (IncorrectLinkOptions | AliasNonUnique $exception) {
    throw $exception;
}