v1.0.0 initial release
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace Illuminate\Container\Attributes;
|
||||
|
||||
use Attribute;
|
||||
use Illuminate\Contracts\Container\Container;
|
||||
use Illuminate\Contracts\Container\ContextualAttribute;
|
||||
|
||||
#[Attribute(Attribute::TARGET_PARAMETER)]
|
||||
class Config implements ContextualAttribute
|
||||
{
|
||||
/**
|
||||
* Create a new class instance.
|
||||
*/
|
||||
public function __construct(public string $key, public mixed $default = null)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* Resolve the configuration value.
|
||||
*
|
||||
* @param self $attribute
|
||||
* @param \Illuminate\Contracts\Container\Container $container
|
||||
* @return mixed
|
||||
*/
|
||||
public static function resolve(self $attribute, Container $container)
|
||||
{
|
||||
return $container->make('config')->get($attribute->key, $attribute->default);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user