mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 23:07:32 -05:00 
			
		
		
		
	Merge pull request #5667 from turbo124/v5-develop
Enforce object over array
This commit is contained in:
		
						commit
						5d92f3bfb4
					
				@ -136,7 +136,7 @@ class PaymentMethod
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
            foreach ($gateway->driver($this->client)->gatewayTypes() as $type) {
 | 
					            foreach ($gateway->driver($this->client)->gatewayTypes() as $type) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                if (isset($gateway->fees_and_limits) && property_exists($gateway->fees_and_limits, $type)) {
 | 
					                if (isset($gateway->fees_and_limits) && is_object($gateway->fees_and_limits) && property_exists($gateway->fees_and_limits, $type)) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                    if ($this->validGatewayForAmount($gateway->fees_and_limits->{$type}, $this->amount) && $gateway->fees_and_limits->{$type}->is_enabled) {
 | 
					                    if ($this->validGatewayForAmount($gateway->fees_and_limits->{$type}, $this->amount) && $gateway->fees_and_limits->{$type}->is_enabled) {
 | 
				
			||||||
                    
 | 
					                    
 | 
				
			||||||
@ -165,7 +165,7 @@ class PaymentMethod
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
            foreach ($gateway->driver($this->client)->gatewayTypes() as $type) {
 | 
					            foreach ($gateway->driver($this->client)->gatewayTypes() as $type) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                if (isset($gateway->fees_and_limits) && property_exists($gateway->fees_and_limits, $type)) {
 | 
					                if (isset($gateway->fees_and_limits) && is_object($gateway->fees_and_limits) && property_exists($gateway->fees_and_limits, $type)) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                    if ($this->validGatewayForAmount($gateway->fees_and_limits->{GatewayType::CREDIT_CARD}, $this->amount)) 
 | 
					                    if ($this->validGatewayForAmount($gateway->fees_and_limits->{GatewayType::CREDIT_CARD}, $this->amount)) 
 | 
				
			||||||
                        $this->payment_methods[] = [$gateway->id => $type];
 | 
					                        $this->payment_methods[] = [$gateway->id => $type];
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user