Skip to content

Instantly share code, notes, and snippets.

@harikt
Created July 1, 2014 14:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harikt/6e382764d084d1394894 to your computer and use it in GitHub Desktop.
Save harikt/6e382764d084d1394894 to your computer and use it in GitHub Desktop.
<?php
namespace Hello;
class World
{
public function display()
{
return imap_connect('imap.example.com');
}
}
$world = new World();
$world->display();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment