• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

systemsdk / docker-apache-php-laravel / #83

04 May 2025 03:35PM UTC coverage: 12.5%. Remained the same
#83

push

DKravtsov
Updated composer dependencies. Added xalan tool for generating phpcpd html report.

2 of 16 relevant lines covered (12.5%)

0.13 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/app/Models/User.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace App\Models;
6

7
use Illuminate\Database\Eloquent\Factories\HasFactory;
8
use Illuminate\Foundation\Auth\User as Authenticatable;
9
use Illuminate\Notifications\Notifiable;
10

11
class User extends Authenticatable
12
{
13
    /** @use HasFactory<\Database\Factories\UserFactory> */
14
    use HasFactory;
15
    use Notifiable;
16

17
    /**
18
     * The attributes that are mass assignable.
19
     *
20
     * @var list<string>
21
     */
22
    protected $fillable = [
23
        'name',
24
        'email',
25
        'password',
26
    ];
27

28
    /**
29
     * The attributes that should be hidden for serialization.
30
     *
31
     * @var list<string>
32
     */
33
    protected $hidden = [
34
        'password',
35
        'remember_token',
36
    ];
37

38
    /**
39
     * Get the attributes that should be cast.
40
     *
41
     * @return array<string, string>
42
     */
43
    protected function casts(): array
44
    {
45
        return [
×
46
            'email_verified_at' => 'datetime',
×
47
            'password' => 'hashed',
×
48
        ];
×
49
    }
50
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc