Completed
Push — master ( 3e8b02...37f80c )
by Florian
16:58
created

StingerSoftEntitySearchBundle.php (1 issue)

Severity

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
3
/*
4
 * This file is part of the Stinger Entity Search package.
5
 *
6
 * (c) Oliver Kotte <[email protected]>
7
 * (c) Florian Meyer <[email protected]>
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
namespace StingerSoft\EntitySearchBundle;
13
14
use Symfony\Component\HttpKernel\Bundle\Bundle;
15
16
/**
17
 */
18
class StingerSoftEntitySearchBundle extends Bundle {
19
20
	public static function getRequiredBundles($env) {
0 ignored issues
show
The parameter $env 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...
21
		$bundles = array();
22
		$bundles['StingerSoftEntitySearchBundle'] = '\StingerSoft\EntitySearchBundle\StingerSoftEntitySearchBundle';
23
		$bundles['KnpPaginatorBundle'] = 'Knp\Bundle\PaginatorBundle\KnpPaginatorBundle';
24
		return $bundles;
25
	}
26
}