1 | <?php |
||
24 | class ProgressBarFactory extends BaseFactory { |
||
25 | |||
26 | /** |
||
27 | * Creates a new Material Design progress bar. |
||
28 | * |
||
29 | * @param string $color The color. |
||
30 | * @return ProgressBarInterface Returns the Material Design progress bar. |
||
31 | */ |
||
32 | public static function newMaterialDesignProgressBar(string $color): ProgressBarInterface { |
||
35 | |||
36 | /** |
||
37 | * Parses a Material Design progress bar. |
||
38 | * |
||
39 | * @param array $args The arguments. |
||
40 | * @return ProgressBarInterface Returns the Material Design progress bar. |
||
41 | */ |
||
42 | public static function parseMaterialDesignProgressBar(array $args): ProgressBarInterface { |
||
45 | } |
||
46 |