This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require __DIR__ . "/source/autoload.php"; | |
$model = new \Source\Models\Devs(); | |
$devs = $model->bootstrap( | |
"Pedro Mabango", | |
"PHP, Jquery, Bootstrap,etc", | |
"Pedro Mabango Makengo", | |
"PedroMabango", | |
"4", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require __DIR__ . "/Assets/Sweetalert.php"; | |
require __DIR__ . "/source/autoload.php"; | |
$message = new \Source\Support\Message(); | |
echo $message->warning("Essa é uma mensagem de teste do IMS"); |