Advertisement
shmaltorhbooks

Untitled

Aug 14th, 2012
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2. namespace ZoneSpecific;
  3.  
  4. $domainExists = call_user_func(function(){
  5.     $c = new Config(__DIR__ . '/config.yml');
  6.     return function($domain) use ($c) {
  7.         return $c->domainExists($domain);
  8.     };
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement