aboutsummaryrefslogtreecommitdiff
path: root/src/phorkie/Database.php
blob: e9a75a1fc2dd0b98d2829e0be8bd07274351ee4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
namespace phorkie;

class Database
{
    public function getSearch()
    {
        return new Search_Elasticsearch();
    }

    public function getIndexer()
    {
        return new Indexer_Elasticsearch();
    }

    public function getSetup()
    {
        return new Database_Setup_Elasticsearch();
    }
}

?>