Skip to content

Instantly share code, notes, and snippets.

@khepin
Created April 13, 2011 06:50
Show Gist options
  • Save khepin/917086 to your computer and use it in GitHub Desktop.
Save khepin/917086 to your computer and use it in GitHub Desktop.
<?php
namespace Khepin;
class UrlService {
private $urls = array(
'goog' => 'http://www.google.com',
'fb' => 'http://www.facebook.com',
);
public function get($short){
return $this->urls[$short];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment