Entity

Not yet in a tagged release

Description

Entity is an interface. Use it to help with type-hinting or strict type declarations.

Public Interface

Entity has the following public interface:

// `Entity` lives in this namespace
namespace GanbaroDigital\MissingBits\Entities;

interface Entity
{
}

How To Use

Implementing This Interface

use GanbaroDigital\MissingBits\Entities\Entity;

class MyEntity extends Entity
{
    // add your getters and setters here
}

Notes

None at this time.