BasketController::indexAction()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 12
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 12
rs 10
c 0
b 0
f 0
cc 2
nc 2
nop 0
1
<?php
2
3
/**
4
 * @license MIT, http://opensource.org/licenses/MIT
5
 * @copyright Aimeos (aimeos.org), 2015-2023
6
 */
7
8
9
namespace Aimeos\Shop\Controller;
10
11
use Aimeos\Shop\Facades\Shop;
12
use Illuminate\Routing\Controller;
13
use Illuminate\Support\Facades\Response;
14
15
16
/**
17
 * Aimeos controller for basket related functionality.
18
 */
19
class BasketController extends Controller
20
{
21
	/**
22
	 * Returns the html for the standard basket page.
23
	 *
24
	 * @return \Illuminate\Http\Response Response object with output and headers
25
	 */
26
	public function indexAction()
27
	{
28
		$params = ['page' => 'page-basket-index'];
29
30
		foreach( app( 'config' )->get( 'shop.page.basket-index' ) as $name )
31
		{
32
			$params['aiheader'][$name] = Shop::get( $name )->header();
0 ignored issues
show
Unused Code introduced by
The call to Aimeos\Shop\Facades\Shop::get() has too many arguments starting with $name. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

32
			$params['aiheader'][$name] = Shop::/** @scrutinizer ignore-call */ get( $name )->header();

This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress. Please note the @ignore annotation hint above.

Loading history...
33
			$params['aibody'][$name] = Shop::get( $name )->body();
34
		}
35
36
		return Response::view( Shop::template( 'basket.index' ), $params )
0 ignored issues
show
Bug introduced by
The method template() does not exist on Aimeos\Shop\Facades\Shop. Since you implemented __callStatic, consider adding a @method annotation. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

36
		return Response::view( Shop::/** @scrutinizer ignore-call */ template( 'basket.index' ), $params )
Loading history...
37
			->header( 'Cache-Control', 'no-store, , max-age=0' );
38
	}
39
}