for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of alchemy/pipeline-component.
*
* (c) Alchemy <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Alchemy\Pipeline\Pipeline;
use Alchemy\Pipeline\Pipeline;
use Alchemy\Resource\Resource;
class NullPipeline implements Pipeline
{
/**
* @param \Alchemy\Resource\Resource $resource
* @return \Alchemy\Resource\Resource
public function process(Resource $resource)
return $resource;
}