NAME
Articulate::Enrichment - tidy up your content before it goes into the database
DESCRIPTION
use Articulate::Enrichment;
$request = enrichment->enrich($item, $request);
This will pass the item and the request to a series of enrichment objects, each of which has the opportunity to alter the item according to their own rules, for instance, to add an 'updated on' date to the meta or to fix minor errors in the content.
Services should typically invoke enrichment when they create or update content, after validation but before storage.
Note: the item passed in is not cloned so this will typically mutate the item.
Enrichments should not mutate the request, however there is no technical barrier to them doing so.
ATTRIBUTES
enrichments
An array of the enrichment classes which will be used.
METHODS
enrich
Passes the item and request objects to a series of enrichment objects, and returns the item after each has done their bit.