fix vendor

This commit is contained in:
2024-07-08 16:20:25 +03:00
parent 2f2310e739
commit 0b53fce31b
1882 changed files with 436 additions and 181884 deletions

20
app/helpers/Debug.php Normal file
View File

@ -0,0 +1,20 @@
<?php
namespace app\helpers;
class Debug
{
public static function prn($content)
{
echo '<pre style="background: lightgray; border: 1px solid black; padding: 2px">';
print_r($content);
echo '</pre>';
}
public static function dd($content)
{
echo '<pre style="background: lightgray; border: 1px solid black; padding: 2px">';
print_r($content);
echo '</pre>';
die();
}
}