tapestry-cloud/tapestry

View on GitHub
src/Step.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace Tapestry;

use Tapestry\Entities\Project;
use Symfony\Component\Console\Output\OutputInterface;

interface Step
{
    /**
     * Process the Project at current.
     *
     * @param Project         $project
     * @param OutputInterface $output
     *
     * @return bool
     */
    public function __invoke(Project $project, OutputInterface $output);
}