pluf/workflow

View on GitHub
src/Builder/MultiFrom.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace Pluf\Workflow\Builder;

/**
 * Created by kailianghe on 7/12/14.
 */
interface MultiFrom
{

    /**
     * Build transition target states and return to clause builder
     *
     * @param
     *            stateIds id of states
     * @return To clause builder
     */
    function toAmong($stateIds): MultiTo;
}