00f100/fcphp-controller

There is no license information available for the latest version (0.1.0) of this package.

Abstract class Controller to FcPhp

0.1.0 2018-08-13 01:53 UTC

This package is auto-updated.

Last update: 2024-04-18 05:23:04 UTC


README

Abstract class to Controller FcPhp

Build Status codecov

PHP Version Packagist Version Total Downloads

How to install

Composer:

$ composer require 00f100/fcphp-controller

or add in composer.json

{
    "require": {
        "00f100/fcphp-controller": "*"
    }
}

How to use

Extends your controller from FcPhp Controller and add your services into Controller using contruct method. After call to service using "getService()" method.

namespace Example
{
    use FcPhp\Controller\Controller;

    class ExampleController extends Controller
    {
        public function __construct($userService, $profileService, $addressService)
        {
            $this->setService('user', $userService);
            $this->setService('profile', $profileService);
            $this->setService('address', $addressService);
        }

        public function findUsers()
        {
            return $this->getService('user')->findAll();
        }

        public function findProfiles()
        {
            return $this->getService('profile')->findAll();
        }

        public function findAddresses()
        {
            return $this->getService('address')->findAll();
        }
    }
}

Controller Callback

use Example\ExampleController;

$instance = new ExampleController(UserService(), ProfileService(), AddressService());

// Callback on find service using "getService()"...
$instance->callback('callbackService', function(string $service, $instance) {

    // Your code here...

});