davispeixoto/PHP-Batch

View on GitHub
src/Davispeixoto/PhpBatch/Contracts/StepInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php namespace Davispeixoto\PhpBatch\Contracts;

    /**
     * Interface ItemReaderInterface
     * @package Davispeixoto\PhpBatch\Contracts
     */

/**
 * Created by Davis Peixoto <davis.peixoto@gmail.com>.
 * Date: 5/14/15
 * Time: 6:27 PM
 * Powered By PhpStorm
 */

interface StepInterface
{
    public function run();
}