This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/libraries/DB.php

22 lines
375 B
PHP
Raw Normal View History

2016-02-18 23:28:44 +00:00
<?php
/**
2016-02-25 16:06:29 +00:00
* Holds the alias class for the Illuminate database thing.
2016-02-18 23:28:44 +00:00
*
* @package Sakura
*/
namespace Sakura;
2016-02-25 16:06:29 +00:00
use \Illuminate\Database\Capsule\Manager;
2016-02-18 23:28:44 +00:00
/**
2016-02-25 16:06:29 +00:00
* The Illuminate (Laravel) database wrapper.
2016-02-18 23:28:44 +00:00
*
* @package Sakura
* @author Julian van de Groep <me@flash.moe>
*/
2016-02-25 16:06:29 +00:00
class DB extends Manager
2016-02-18 23:28:44 +00:00
{
2016-02-25 16:06:29 +00:00
// This class solely exists as an alias (for now at least)
2016-02-18 23:28:44 +00:00
}