for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace app\librerias\vista;
use src\token\CrearToken;
class UtilidadesParaVistas
{
public function minusculas(string $string): string
return strtolower(htmlentities($string));
}
public function token(): string
$token = new CrearToken();
return $token->obtener();