Your ROOT_URL in app.ini is https://code.exacti.com.br/ but you are visiting https://git.exacti.com.br/ExacTI/phacil-framework/blame/commit/88b6ba86e2f3891cfdc87772bb60f9a0dd3c5e2a/system/engine/interfaces/front.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

27 lines
559 B

<?php
/*
* Copyright © 2021 ExacTI Technology Solutions. All rights reserved.
* GPLv3 General License.
* https://exacti.com.br
*/
4 years ago
namespace Phacil\Framework\Interfaces;
4 years ago
interface Front {
4 years ago
/**
4 years ago
* @param \Phacil\Framework\Interfaces\Action $pre_action
4 years ago
* @return void
*/
4 years ago
public function addPreAction(\Phacil\Framework\Interfaces\Action $pre_action);
4 years ago
/**
4 years ago
* @param \Phacil\Framework\Interfaces\Action $action
4 years ago
* @param string $error
* @return void
*/
4 years ago
public function dispatch(\Phacil\Framework\Interfaces\Action $action, $error);
4 years ago
}