Files
Business-credit-asistant/app/Services/CustomContainer.php
2026-06-29 13:00:18 +06:00

17 lines
291 B
PHP

<?php
namespace App\Services;
class CustomContainer
{
private static $resource;
public static function setContainer($key,$value){
static::$resource[$key] = $value;
}
public static function getContainer($key){
return static::$resource[$key] ?? "";
}
}