Your ROOT_URL in app.ini is https://code.exacti.com.br/ but you are visiting https://git.exacti.com.br/ExacTI/phacil-framework/src/commit/2e50b2c93a83f54581228ca7928f6b5babad4955/system/engine/interfaces/action.php You should set ROOT_URL correctly, otherwise the web may not work correctly.
A super easy PHP Framework for web development! https://github.com/exacti/phacil-framework

41 lines
765 B

<?php
/*
* Copyright © 2021 ExacTI Technology Solutions. All rights reserved.
* GPLv3 General License.
* https://exacti.com.br
* Phacil PHP Framework - https://github.com/exacti/phacil-framework
*/
namespace Phacil\Framework\Interfaces;
interface Action {
/**
* @param string $route
* @param array $args
* @return void
*/
public function __construct($route, $args = array());
/** @return string */
public function getFile();
/** @return string */
public function getClass();
/**
*
* @param string $class
* @return $this
*/
public function setClass($class);
/** @return array */
public function getClassAlt();
/** @return string */
public function getMethod();
/** @return array */
public function getArgs();
}