Skip to content
This repository has been archived by the owner on Nov 21, 2018. It is now read-only.
/ frontman Public archive

A simple package to create your own Laravel-style facades

License

Notifications You must be signed in to change notification settings

hassankhan/frontman

Repository files navigation

Frontman

Latest version Software License Build Status Coverage Status Quality Score Total Downloads

Frontman is a simple class that you can extend to create your own Laravel-style facades (or proxies, as they should be called).

Install

Via Composer

$ composer require hassankhan/frontman

Usage

use Frontman\Proxy;
use Frontman\ProxyInterface;

class MyClass
{
    public function foo()
    {
        echo 'Foo';
    }
}

class MyOtherClass
{
    protected $value;

    public function __construct($value)
    {
        $this->value = $value;
    }

    public function bar()
    {
        echo 'Bar';
    }
}

class MyProxy extends Proxy implements ProxyInterface
{
    public static function getRealClass()
    {
        return 'MyClass';
    }
}

class MyOtherProxy extends Proxy implements ProxyInterface
{
    public static function getRealClass()
    {
        return 'MyOtherClass';
    }

    public static function getConstructorArguments()
    {
        return array('5');
    }
}

MyProxy::foo();         // 'Foo'
MyOtherProxy::bar();    // 'Bar'

Contributing

Please see CONTRIBUTING.md for details.

Credits

License

The MIT License (MIT). Please see LICENSE.md for more information.

About

A simple package to create your own Laravel-style facades

Resources

License

Stars

Watchers

Forks

Packages

No packages published