Test project for media files management.
<?php
namespace Illuminate\Container\Attributes;
use Attribute;
use Illuminate\Contracts\Container\Container;
use Illuminate\Contracts\Container\ContextualAttribute;
#[Attribute(Attribute::TARGET_PARAMETER)]
class Log implements ContextualAttribute
{
/**
* Create a new class instance.
*/
public function __construct(public ?string $channel = null)
{
}
/**
* Resolve the log channel.
*
* @param self $attribute
* @param \Illuminate\Contracts\Container\Container $container
* @return \Psr\Log\LoggerInterface
*/
public static function resolve(self $attribute, Container $container)
{
return $container->make('log')->channel($attribute->channel);
}
}