Skip to content

Instantly share code, notes, and snippets.

@notomato
Created August 17, 2012 07:57
Show Gist options
  • Save notomato/3376843 to your computer and use it in GitHub Desktop.
Save notomato/3376843 to your computer and use it in GitHub Desktop.
Fat filters are bad
<?php
// FAT FILTERS == BAD
// Try to make filters do one thing, not like this...
Dispatcher::applyFilter(run, function($self, $params, $chain) {
// Herp
// Derp
// Herp
// Derp
// Herp
// Derp
// Herp
// Derp
// Herp
// Derp
// Herp (repeat x100)
});
// http://www.slideshare.net/nateabele/the-state-of-lithium
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment