Skip to content

Commit

Permalink
🚚 added two new steps for #297 in new folder as per #282
Browse files Browse the repository at this point in the history
  • Loading branch information
carbontwelve committed Jan 22, 2018
1 parent ba9ab7b commit f32c6b1
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/Modules/Steps/LexicalAnalysis.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

namespace Tapestry\Steps;

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

class LexicalAnalysis implements Step
{

/**
* Process the Project at current.
*
* @param Project $project
* @param OutputInterface $output
*
* @return bool
*/
public function __invoke(Project $project, OutputInterface $output)
{
return true;
}
}
24 changes: 24 additions & 0 deletions src/Modules/Steps/SyntaxAnalysis.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

namespace Tapestry\Steps;

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

class SyntaxAnalysis implements Step
{

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

0 comments on commit f32c6b1

Please sign in to comment.