imemento/support

Support helpers

v8.1.0 2021-07-25 08:51 UTC

README

Build Status Latest Stable Version License Total Downloads

Support helpers for common internal operations (eg. identity encode/decode).

Install

composer require imemento/support

Usage

use iMemento\Support\Identity;

Encoding

Identity::encode([1, 2]);
identity_encode([1, 2]);

Decoding

Identity::decode(['1.2']);
identity_decode(['1.2']);