Skip to content

Instantly share code, notes, and snippets.

@handlename
Created September 21, 2010 10:53
Show Gist options
  • Save handlename/589537 to your computer and use it in GitHub Desktop.
Save handlename/589537 to your computer and use it in GitHub Desktop.
<?php
class myEnvironmentConfigFilter extends sfFilter
{
public function execute($filterChain)
{
if ($this->isFirstCall()) {
include(sfContext::getInstance()->getConfigCache()->checkConfig(sfConfig::get('sf_config_dir').'/environment.yml'));
}
$filterChain->execute();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment