@@ -3,7 +3,6 @@ |
||
3 | 3 | use Composer\Factory; |
4 | 4 | use Composer\IO\NullIO; |
5 | 5 | use Composer\Package\Loader\ArrayLoader; |
6 | -use Composer\Repository\ComposerRepository; |
|
7 | 6 | use Guzzle\Http\Client; |
8 | 7 | |
9 | 8 | /** |
@@ -66,6 +66,9 @@ discard block |
||
66 | 66 | $addon->write(); |
67 | 67 | } |
68 | 68 | |
69 | + /** |
|
70 | + * @param string $path |
|
71 | + */ |
|
69 | 72 | protected function download(PackageInterface $package, $path) { |
70 | 73 | $this->packagist |
71 | 74 | ->getComposer() |
@@ -180,6 +183,9 @@ discard block |
||
180 | 183 | return (strpos($addon->Repository, 'github.com') !== false); |
181 | 184 | } |
182 | 185 | |
186 | + /** |
|
187 | + * @param string $path |
|
188 | + */ |
|
183 | 189 | private function buildScreenshots(Addon $addon, PackageInterface $package, $path) { |
184 | 190 | $extra = $package->getExtra(); |
185 | 191 | $screenshots = array(); |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | /** |
115 | 115 | * Remove the effect of code of conduct Helpful Robot measure that we currently don't include in the Supported module definition |
116 | 116 | * |
117 | - * @return integer Adjusted Helpful Robot score |
|
117 | + * @return double Adjusted Helpful Robot score |
|
118 | 118 | */ |
119 | 119 | public function getAdjustedHelpfulRobotScore() |
120 | 120 | { |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | * Calculate the total amount of downloads per day |
203 | 203 | * Based on the total amount of downloads divided by the age of the addon |
204 | 204 | * |
205 | - * @return float |
|
205 | + * @return integer |
|
206 | 206 | */ |
207 | 207 | public function getRelativePopularity() |
208 | 208 | { |
@@ -345,7 +345,7 @@ |
||
345 | 345 | /** |
346 | 346 | * Get the list of SilverStripe versions |
347 | 347 | * |
348 | - * @return DataList |
|
348 | + * @return SilverStripeVersion[] |
|
349 | 349 | */ |
350 | 350 | public function getSilverStripeVersions() |
351 | 351 | { |
@@ -1,8 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -use Composer\Package\AliasPackage; |
|
4 | 3 | use Composer\Package\CompletePackage; |
5 | -use Guzzle\Http\Exception\ClientErrorResponseException; |
|
6 | 4 | use SilverStripe\Elastica\ElasticaService; |
7 | 5 | use Packagist\Api\Result\Package; |
8 | 6 | use Composer\Package\Version\VersionParser; |