17 lines
291 B
PHP
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] ?? "";
|
|
}
|
|
}
|