Typical scale conversion as Interfaces constants for PHP

0.2.2 2023-03-07 15:37 UTC

This package is auto-updated.

Last update: 2024-05-07 18:42:01 UTC


README

Scale is a suite of interfaces that can be used to replace hard-coded constants.

Installation

To use Scale, simple run:

composer require flavioheleno/scale

Usage

This library usage is straightforward.

// before
usleep(30000);

// after
usleep(30 * Milliseconds::IN_MICROSECONDS)
// before
$item->expiresAfter(86400);

// after
$item->expiresAfter(Days::IN_SECONDS);

License

This library is licensed under the MIT License.