Skip to content

Instantly share code, notes, and snippets.

@odino
Created May 16, 2011 20:14
Show Gist options
  • Save odino/975253 to your computer and use it in GitHub Desktop.
Save odino/975253 to your computer and use it in GitHub Desktop.
<?php
namespace Orient\Contract\Protocol;
interface Adapter
{
public function __construct($hostname, $port, $username, $password, $database = NULL);
public function execute($sql);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment