Craft\MinimeePlugin::_bindEvents PHP Method

_bindEvents() protected method

Watch for the "createCache" event, and if in devMode, try to clean up any expired caches
protected _bindEvents ( ) : void
return void
    protected function _bindEvents()
    {
        craft()->on('minimee.createCache', function () {
            if (craft()->config->get('devMode')) {
                minimee()->service->deleteExpiredCache();
            }
        });
    }