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 Authenticated implements ContextualAttribute
|
||||
{
|
||||
/**
|
||||
* Create a new class instance.
|
||||
*/
|
||||
public function __construct(public ?string $guard = null)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* Resolve the currently authenticated user.
|
||||
*
|
||||
* @param self $attribute
|
||||
* @param \Illuminate\Contracts\Container\Container $container
|
||||
* @return \Illuminate\Contracts\Auth\Authenticatable|null
|
||||
*/
|
||||
public static function resolve(self $attribute, Container $container)
|
||||
{
|
||||
return call_user_func($container->make('auth')->userResolver(), $attribute->guard);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user