@@ -241,16 +241,16 @@ public static function get_cart_fields( $other_fields = [] ) {
241241 },
242242 ],
243243 'feeTotal ' => [
244- 'type ' => 'String ' ,
245- 'description ' => __ ( 'Cart fee total ' , 'wp-graphql-woocommerce ' ),
244+ 'type ' => 'String ' ,
245+ 'description ' => __ ( 'Cart fee total ' , 'wp-graphql-woocommerce ' ),
246246 'deprecationReason ' => __ ( 'Always null ' , 'wp-graphql-woocommerce ' ),
247- 'args ' => [
247+ 'args ' => [
248248 'format ' => [
249249 'type ' => 'PricingFieldFormatEnum ' ,
250250 'description ' => __ ( 'Format of the price ' , 'wp-graphql-woocommerce ' ),
251251 ],
252252 ],
253- 'resolve ' => static function ( $ source , array $ args ) {
253+ 'resolve ' => static function ( $ source , array $ args ) {
254254 $ price = ! is_null ( $ source ->get_fee_total () ) ? $ source ->get_fee_total () : 0 ;
255255
256256 if ( isset ( $ args ['format ' ] ) && 'raw ' === $ args ['format ' ] ) {
@@ -261,16 +261,16 @@ public static function get_cart_fields( $other_fields = [] ) {
261261 },
262262 ],
263263 'feeTax ' => [
264- 'type ' => 'String ' ,
265- 'description ' => __ ( 'Cart fee tax ' , 'wp-graphql-woocommerce ' ),
264+ 'type ' => 'String ' ,
265+ 'description ' => __ ( 'Cart fee tax ' , 'wp-graphql-woocommerce ' ),
266266 'deprecationReason ' => __ ( 'Always null ' , 'wp-graphql-woocommerce ' ),
267- 'args ' => [
267+ 'args ' => [
268268 'format ' => [
269269 'type ' => 'PricingFieldFormatEnum ' ,
270270 'description ' => __ ( 'Format of the price ' , 'wp-graphql-woocommerce ' ),
271271 ],
272272 ],
273- 'resolve ' => static function ( $ source , array $ args ) {
273+ 'resolve ' => static function ( $ source , array $ args ) {
274274 $ price = ! is_null ( $ source ->get_fee_tax () ) ? $ source ->get_fee_tax () : 0 ;
275275
276276 if ( isset ( $ args ['format ' ] ) && 'raw ' === $ args ['format ' ] ) {
0 commit comments