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

webeweb / jquery-datatables-bundle / 9657863695

25 Jun 2024 06:54AM UTC coverage: 99.814% (+0.001%) from 99.813%
9657863695

push

github

webeweb
Add DataTables service

3750 of 3757 relevant lines covered (99.81%)

213.89 hits per line

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

100.0
/lib/bootstrap/Component/AlertInterface.php
1
<?php
2

3
/*
4
 * This file is part of the jquery-datatables-bundle package.
5
 *
6
 * (c) 2019 WEBEWEB
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11

12
declare(strict_types = 1);
13

14
namespace WBW\Bundle\BootstrapBundle\Component;
15

16
use WBW\Bundle\BootstrapBundle\WBWBootstrapBundle;
17
use WBW\Library\Widget\Component\AlertInterface as BaseAlertInterface;
18

19
/**
20
 * Alert interface.
21
 *
22
 * @author webeweb <https://github.com/webeweb>
23
 * @package WBW\Bundle\BootstrapBundle\Component
24
 */
25
interface AlertInterface extends BaseAlertInterface {
26

27
    /**
28
     * Alert type "dark".
29
     *
30
     * @var string
31
     */
32
    public const ALERT_TYPE_DARK = WBWBootstrapBundle::BOOTSTRAP_TYPE_DARK;
33

34
    /**
35
     * Alert type "light".
36
     *
37
     * @var string
38
     */
39
    public const ALERT_TYPE_LIGHT = WBWBootstrapBundle::BOOTSTRAP_TYPE_LIGHT;
40

41
    /**
42
     * Alert type "primary".
43
     *
44
     * @var string
45
     */
46
    public const ALERT_TYPE_PRIMARY = WBWBootstrapBundle::BOOTSTRAP_TYPE_PRIMARY;
47

48
    /**
49
     * Alert type "secondary".
50
     *
51
     * @var string
52
     */
53
    public const ALERT_TYPE_SECONDARY = WBWBootstrapBundle::BOOTSTRAP_TYPE_SECONDARY;
54

55
    /**
56
     * Get the dismissible.
57
     *
58
     * @return bool|null Returns the dismissible.
59
     */
60
    public function getDismissible(): ?bool;
61

62
    /**
63
     * Get the prefix.
64
     *
65
     * @return string|null Returns the prefix.
66
     */
67
    public function getPrefix(): ?string;
68

69
    /**
70
     * Set the dismissible.
71
     *
72
     * @param bool|null $dismissible The dismissible.
73
     * @return AlertInterface Returns this alert.
74
     */
75
    public function setDismissible(?bool $dismissible): AlertInterface;
76
}
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

© 2025 Coveralls, Inc