| 1 | <?php |
||
| 21 | class CompositeModifier extends AbstractModifier |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var array list of modifiers to run |
||
| 25 | */ |
||
| 26 | public $modifiers = []; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Add modifiers. |
||
| 30 | * @param array $modifiers |
||
| 31 | * @return self for chaining |
||
| 32 | */ |
||
| 33 | public function addModifiers(array $modifiers) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Removes first tag if it is empty: has no notes and no commits. |
||
| 42 | */ |
||
| 43 | 2 | public function run(History $history) |
|
| 56 | } |
||
| 57 |