fix vendor

This commit is contained in:
2024-06-26 11:34:47 +03:00
parent 2714dad7ce
commit 6f66e023a2
18 changed files with 146 additions and 123 deletions

View File

@ -1,7 +1,6 @@
<?php
use src\debug\Debug;
use src\Information;
use src\dto\InformationDTO;
use src\Processing;
require_once "vendor/autoload.php";
@ -24,7 +23,7 @@ $rep->close();
$infArr = [];
foreach ($res as $key){
$inf = new Information();
$inf = new InformationDTO();
$inf->load($key);
$infArr[] = $inf;
}