$pipelines
$pipelines :
Transform pipeline master service.
Pipelines are a series of callbacks used to modify content before storage:
$transform = new \Ceo\Services\TransformService;
$transform->registerPipeline('content', [
function($article) {
$article->content .= "\n\n<!-- Last built " . date('c') . "-->";
return $article
}
]);
...
$pipeline = $transform->pipelineFor('content');
$pipeline->transform($inputData);