ralfhortt/service-contracts

A service contract

1.0.1 2019-12-03 14:57 UTC

This package is auto-updated.

Last update: 2024-05-06 22:39:32 UTC


README

Usage

<?php
use RalfHortt\ServiceContracts\ServiceContract;

class MyService implements ServiceContract
{
    public function register(): void
    {
        // …
    }
}

Changelog

v1.0.1 - 2019-12-03

  • Remove required args for register

v1.0 - 2019-12-03

  • Initial release