| 1 | <?php namespace Arcanedev\Composer\Entities\PackageTraits; |
||
| 11 | trait SuggestsTrait |
||
| 12 | { |
||
| 13 | /* ------------------------------------------------------------------------------------------------ |
||
| 14 | | Traits |
||
| 15 | | ------------------------------------------------------------------------------------------------ |
||
| 16 | */ |
||
| 17 | use PackageTrait; |
||
| 18 | |||
| 19 | /* ------------------------------------------------------------------------------------------------ |
||
| 20 | | Main Functions |
||
| 21 | | ------------------------------------------------------------------------------------------------ |
||
| 22 | */ |
||
| 23 | /** |
||
| 24 | * Merge suggested packages into a RootPackage. |
||
| 25 | * |
||
| 26 | * @param \Composer\Package\RootPackageInterface $root |
||
| 27 | */ |
||
| 28 | 99 | protected function mergeSuggests(RootPackageInterface $root) |
|
| 35 | } |
||
| 36 |