# responsive-menu/3.0.6/src/app/Database/Database.php

Responsive Menu – Create Mobile-Friendly Menu, version 3.0.6. 11 lines.

- Page: https://pluginprobe.com/plugins/responsive-menu/3.0.6/code/src/app/Database/Database.php
- Raw: https://pluginprobe.com/plugins/responsive-menu/3.0.6/raw/src/app/Database/Database.php
- Modified: 2016-07-09T16:41:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/responsive-menu/3.0.6/code/src/app/Database/Database.php#L10-L20`.

```php
<?php

namespace ResponsiveMenu\Database;

interface Database {
	public function update($table, array $to_update, array $where);
	public function delete($table, $name);
	public function all($table);
	public function insert($table, array $arguments);
}

```
