php-kitchen/yii2-domain

View on GitHub
src/Contracts/Strategy.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace PHPKitchen\Domain\Contracts;

/**
 * Represents
 *
 * @author Dmitry Kolodko <prowwid@gmail.com>
 */
interface Strategy {
    const EVENT_BEFORE_CALL = 'beforeCall';
    const EVENT_AFTER_CALL = 'afterCall';

    public function call();
}