harp-orm/random-key

Generate a random key for a model property

0.3.0 2014-07-14 09:24 UTC

This package is auto-updated.

Last update: 2024-03-21 20:56:27 UTC


README

Build Status Scrutinizer Code Quality Code Coverage Latest Stable Version

Generate a random unique key for a model property

Usage

// Model Class
use Harp\Harp\AbstractModel
use Harp\RandomKey\RandomKeyTrait

class User extends AbstractModel
{
    use RandomKeyTrat;

    public static function initialize($config)
    {
        // ...
        RandomKeyTrait::initialize($config);
    }
}

Database Table:

┌─────────────────────────┐
│ Table: User             │
├─────────────┬───────────┤
│ id          │ ingeter   │
│ name        │ string    │
│ uniqueKey*  │ string    │
└─────────────┴───────────┘
* Required fields

License

Copyright (c) 2014, Clippings Ltd. Developed by Ivan Kerin

Under BSD-3-Clause license, read LICENSE file.