Passed
Push — master ( f13f78...5c1b24 )
by Ismayil
04:22
created

engine/classes/Elgg/Composer/PostUpdate.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
namespace Elgg\Composer;
3
4
use Composer\Installer\PackageEvent;
5
6
/**
7
 * A composer command handler to run after post-package-update event
8
 */
9
class PostUpdate {
10
	/**
11
	 * Todo
12
	 *
13
	 * @param PackageEvent $event The Composer event (install/upgrade)
14
	 *
15
	 * @return void
16
	 */
17
	public static function execute(PackageEvent $event) {
0 ignored issues
show
The parameter $event is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
18
19
	}
20
}
21