Skip to content

Instantly share code, notes, and snippets.

@macghriogair
Last active March 20, 2016 23:18
Show Gist options
  • Save macghriogair/9c5f75dc03b0d4b911e3 to your computer and use it in GitHub Desktop.
Save macghriogair/9c5f75dc03b0d4b911e3 to your computer and use it in GitHub Desktop.
basic transformer abstract
<?php
namespace App\Acme;
abstract class Transformer
{
public function transformCollection(array $items)
{
return array_map([$this, 'transform'], $items);
}
abstract public function transform($item);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment