PluginProbe
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration / trunk
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration vtrunk
2.0.15 2.0.12 2.0.10 2.0.4 2.0.1 2.0.0 1.95.3 1.95.2 1.95 1.91.6 trunk 1.11 1.12 1.13 1.20 1.21 1.22 1.23 1.30 1.31 1.32 1.35 1.40 1.41 1.45 All 41 releases
fluent-boards / vendor / wpfluent / framework / src / WPFluent / Database / ConnectionResolverInterface.php

ConnectionResolverInterface.php in FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration trunk, at vendor/wpfluent/framework/src/WPFluent/Database/ConnectionResolverInterface.php

30 lines 599 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace FluentBoards\Framework\Database;
4
5 interface ConnectionResolverInterface
6 {
7 /**
8 * Get a database connection instance.
9 *
10 * @param string|null $name
11 * @return \FluentBoards\Framework\Database\ConnectionInterface
12 */
13 public function connection($name = null);
14
15 /**
16 * Get the default connection name.
17 *
18 * @return string
19 */
20 public function getDefaultConnection();
21
22 /**
23 * Set the default connection name.
24 *
25 * @param string $name
26 * @return void
27 */
28 public function setDefaultConnection($name);
29 }
30