Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 494 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 494 Bytes

Scale

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.