Completed
Push — master ( 12c2d5...bd6ae0 )
by Aimeos
04:17
created
admin/jqadm/templates/dashboard/item-order-latest-standard.php 1 patch
Braces   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -5,8 +5,7 @@  discard block
 block discarded – undo
5 5
  * @copyright Aimeos (aimeos.org), 2016-2020
6 6
  */
7 7
 
8
-$price = function( \Aimeos\MShop\Order\Item\Iface $item, $priceFormat )
9
-{
8
+$price = function( \Aimeos\MShop\Order\Item\Iface $item, $priceFormat ) {
10 9
 	if( $order = $item->getBaseItem() )
11 10
 	{
12 11
 		$price = 0;
@@ -20,8 +19,7 @@  discard block
 block discarded – undo
20 19
 };
21 20
 
22 21
 
23
-$name = function( \Aimeos\MShop\Order\Item\Iface $item )
24
-{
22
+$name = function( \Aimeos\MShop\Order\Item\Iface $item ) {
25 23
 	if( $order = $item->getBaseItem() )
26 24
 	{
27 25
 		$type = \Aimeos\MShop\Order\Item\Base\Address\Base::TYPE_PAYMENT;
@@ -39,8 +37,7 @@  discard block
 block discarded – undo
39 37
 };
40 38
 
41 39
 
42
-$payment = function( \Aimeos\MShop\Order\Item\Iface $item )
43
-{
40
+$payment = function( \Aimeos\MShop\Order\Item\Iface $item ) {
44 41
 	if( $order = $item->getBaseItem() )
45 42
 	{
46 43
 		$type = \Aimeos\MShop\Order\Item\Base\Service\Base::TYPE_PAYMENT;
@@ -56,8 +53,7 @@  discard block
 block discarded – undo
56 53
 };
57 54
 
58 55
 
59
-$status = function( array $list, $key )
60
-{
56
+$status = function( array $list, $key ) {
61 57
 	return ( isset( $list[$key] ) ? $list[$key] : '' );
62 58
 };
63 59
 
Please login to merge, or discard this patch.