Skip to content

Instantly share code, notes, and snippets.

View simensen's full-sized avatar
🎯
Focusing

Beau Simensen simensen

🎯
Focusing
View GitHub Profile
@aek
aek / halo_AntPathMatcher.php
Created October 18, 2010 16:42
halo_MultiActionController
<?php
class halo_AntPathMatcher implements halo_IPathMatcher {
public function match($pattern, $path){
/**
** PurSelector is an Utility class from http://www.php-pop.org
**/
return PurSelector::match($pattern, $path, true);
}
}
?>