Browse Source

updated Admin/Migrate (added phpdocs)

v3-dev
REJack 7 years ago
parent
commit
e03e9ae3ed
  1. 35
      application/Controllers/Admin/Migrate.php

35
application/Controllers/Admin/Migrate.php

@ -1,21 +1,50 @@
<?php <?php
/**
* CodeIgniter-Aauth
*
* Aauth is a User Authorization Library for CodeIgniter 4.x, which aims to make
* easy some essential jobs such as login, permissions and access operations.
* Despite ease of use, it has also very advanced features like groupping,
* access management, public access etc..
*
* @package CodeIgniter-Aauth
* @author Magefly Team
* @author Jacob Tomlinson
* @author Tim Swagger (Renowne, LLC) <tim@renowne.com>
* @author Raphael Jackstadt <info@rejack.de>
* @copyright 2014-2017 Emre Akay
* @copyright 2018 Magefly
* @license https://opensource.org/licenses/MIT MIT License
* @link https://github.com/magefly/CodeIgniter-Aauth
*/
namespace App\Controllers\Admin; namespace App\Controllers\Admin;
use CodeIgniter\Controller; use CodeIgniter\Controller;
/**
* Aauth Admin/Migrate Controller.
*
* @package CodeIgniter-Aauth
*/
class Migrate extends Controller class Migrate extends Controller
{ {
/**
* Index
*
* @return void
*/
public function index() public function index()
{ {
$config = new \Config\Aauth(); $config = new \Config\Aauth();
$migrate = \Config\Services::migrations(); $migrate = \Config\Services::migrations();
try try
{ {
$migrate->latest('App', $config->dbProfile); $migrate->latest('App', $config->dbProfile);
} }
catch (\Exception $e) catch (\Exception $e)
{ {
// Do something with the error here... // Do something with the error here...
} }
} }
} }

Loading…
Cancel
Save