Skip to content

Commit

Permalink
Merge pull request #80 from bretto36/main
Browse files Browse the repository at this point in the history
Added PHPDocs to allow autocompletion in IDE
  • Loading branch information
rappasoft authored Mar 29, 2024
2 parents 066ac11 + 73747ee commit 68dc22e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Models/AuthenticationLog.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\MorphTo;

/**
* @property int $id
* @property string $authenticatable_type
* @property int $authenticatable_id
* @property string|null $ip_address
* @property string|null $user_agent
* @property \Illuminate\Support\Carbon|null $login_at
* @property bool $login_successful
* @property \Illuminate\Support\Carbon|null $logout_at
* @property bool $cleared_by_user
* @property array|null $location
*/
class AuthenticationLog extends Model
{
public $timestamps = false;
Expand Down

0 comments on commit 68dc22e

Please sign in to comment.