- Fully transitioned the backend to the Porto architectural pattern - Improved code organization and maintainability - Fixed minor bugs and inconsistencies
12 lines
143 B
PHP
12 lines
143 B
PHP
<?php
|
|
|
|
namespace App\Containers\Search\Loaders;
|
|
|
|
class ProvidersLoader
|
|
{
|
|
/**
|
|
* @var array
|
|
*/
|
|
public array $providers = [];
|
|
}
|