vendor and env first commit

This commit is contained in:
2025-03-28 08:52:46 +01:00
parent f8388bc81b
commit 8f26283832
10976 changed files with 1349952 additions and 2 deletions
@@ -0,0 +1,28 @@
<?php
namespace Laravel\Fortify\Events;
use Illuminate\Foundation\Events\Dispatchable;
class PasswordUpdatedViaController
{
use Dispatchable;
/**
* The user instance.
*
* @var \App\Models\User
*/
public $user;
/**
* Create a new event instance.
*
* @param \App\Models\User $user
* @return void
*/
public function __construct($user)
{
$this->user = $user;
}
}
@@ -0,0 +1,37 @@
<?php
namespace Laravel\Fortify\Events;
use Illuminate\Queue\SerializesModels;
class RecoveryCodeReplaced
{
use SerializesModels;
/**
* The authenticated user.
*
* @var \Illuminate\Contracts\Auth\Authenticatable
*/
public $user;
/**
* The recovery code.
*
* @var string
*/
public $code;
/**
* Create a new event instance.
*
* @param \Illuminate\Contracts\Auth\Authenticatable $user
* @param string $code
* @return void
*/
public function __construct($user, $code)
{
$this->user = $user;
$this->code = $code;
}
}
@@ -0,0 +1,28 @@
<?php
namespace Laravel\Fortify\Events;
use Illuminate\Foundation\Events\Dispatchable;
class RecoveryCodesGenerated
{
use Dispatchable;
/**
* The user instance.
*
* @var \App\Models\User
*/
public $user;
/**
* Create a new event instance.
*
* @param \App\Models\User $user
* @return void
*/
public function __construct($user)
{
$this->user = $user;
}
}
@@ -0,0 +1,8 @@
<?php
namespace Laravel\Fortify\Events;
class TwoFactorAuthenticationChallenged extends TwoFactorAuthenticationEvent
{
//
}
@@ -0,0 +1,8 @@
<?php
namespace Laravel\Fortify\Events;
class TwoFactorAuthenticationConfirmed extends TwoFactorAuthenticationEvent
{
//
}
@@ -0,0 +1,8 @@
<?php
namespace Laravel\Fortify\Events;
class TwoFactorAuthenticationDisabled extends TwoFactorAuthenticationEvent
{
//
}
@@ -0,0 +1,8 @@
<?php
namespace Laravel\Fortify\Events;
class TwoFactorAuthenticationEnabled extends TwoFactorAuthenticationEvent
{
//
}
@@ -0,0 +1,28 @@
<?php
namespace Laravel\Fortify\Events;
use Illuminate\Foundation\Events\Dispatchable;
abstract class TwoFactorAuthenticationEvent
{
use Dispatchable;
/**
* The user instance.
*
* @var \App\Models\User
*/
public $user;
/**
* Create a new event instance.
*
* @param \App\Models\User $user
* @return void
*/
public function __construct($user)
{
$this->user = $user;
}
}
@@ -0,0 +1,8 @@
<?php
namespace Laravel\Fortify\Events;
class TwoFactorAuthenticationFailed extends TwoFactorAuthenticationEvent
{
//
}