diff --git a/Adapter/Adapter.php b/Adapter/Adapter.php index 3ecb4ed..85b9385 100644 --- a/Adapter/Adapter.php +++ b/Adapter/Adapter.php @@ -21,6 +21,10 @@ interface DatabaseAdapter class MySQL implements DatabaseAdapter { + /** + * The Adapter need to wrap the Adaptee in the constructor + * much like Decorator does. Nothing is adapted here... + */ public function getTables() { return $this->select('SHOW TABLES');