| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php namespace Arcanesoft\Core\Helpers\UI\LinkTraits; |
||
| 36 | 3 | public static function deleteModalWithIcon($url, array $attributes = [], $disabled = false) |
|
| 37 | { |
||
| 38 | 3 | return static::make('delete', $url, $attributes, $disabled) |
|
| 39 | 3 | ->size('sm') |
|
| 40 | 3 | ->withTitle(true) |
|
| 41 | 3 | ->tooltip(false); |
|
| 42 | } |
||
| 43 | } |
||
| 44 |