<?php
namespace App\partidas\controllers;

use App\partidas\models\PrincipalModel;
use System\PrincipalController;

class Principal extends PrincipalController
{
    function __construct()
    {
        # code...
    }

	/**
	* A summary informing the user what the associated element does.
	*
	* A *description*, that can span multiple lines, to go _in-depth_ into the details of this element
	* and to provide some background information or textual references.
	*
	* @param string $myArgument With a *description* of this argument, these may also
	*    span multiple lines.
	*
	* @return void
	*/
    public function index()
    {
		$this->view('partidas/index');
    }

    public function dos()
    {
    	echo PrincipalModel::dos();
    }

    public function variables()
    {
    	echo getenv('ENV_DB_ADAPTER_PHINX');
    }
}

