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

conedevelopment / bazar / 20627766757

31 Dec 2025 09:48PM UTC coverage: 64.08% (-0.04%) from 64.117%
20627766757

Pull #236

github

web-flow
Merge b787dd44f into f6c84deae
Pull Request #236: Discount Rules

0 of 1 new or added line in 1 file covered. (0.0%)

31 existing lines in 4 files now uncovered.

1115 of 1740 relevant lines covered (64.08%)

18.4 hits per line

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

0.0
/src/Models/DiscountRule.php
1
<?php
2

3
declare(strict_types=1);
4

5
namespace Cone\Bazar\Models;
6

7
use Cone\Bazar\Interfaces\Models\DiscountRule as Contract;
8
use Cone\Root\Traits\InteractsWithProxy;
9
use Illuminate\Database\Eloquent\Model;
10

11
class DiscountRule extends Model implements Contract
12
{
13
    use InteractsWithProxy;
14

15
    /**
16
     * The accessors to append to the model's array form.
17
     *
18
     * @var list<string>
19
     */
20
    protected $appends = [];
21

22
    /**
23
     * The attributes that should have default values.
24
     *
25
     * @var array<string, mixed>
26
     */
27
    protected $attributes = [];
28

29
    /**
30
     * The attributes that are mass assignable.
31
     *
32
     * @var list<string>
33
     */
34
    protected $fillable = [];
35

36
    /**
37
     * The table associated with the model.
38
     *
39
     * @var string
40
     */
41
    protected $table = 'bazar_discount_rules';
42

43
    /**
44
     * Get the proxied interface.
45
     */
46
    public static function getProxiedInterface(): string
47
    {
NEW
48
        return Contract::class;
×
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