Skip to content
This repository has been archived by the owner on Oct 30, 2020. It is now read-only.

Commit

Permalink
Applies php-cs-fixer fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig Paul committed Oct 24, 2016
1 parent 32158db commit 6f056d6
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/CreditCard.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,4 @@ public static function create(string $number, string $expiry, int $crypt = 7)
{
return new static($number, $expiry, $crypt);
}
}
}
2 changes: 1 addition & 1 deletion src/Crypt.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ class Crypt
const SSL_ENABLED_MERCHANT = 7;
const NON_SECURE = 8;
const NON_AUTHENTICATED = 9;
}
}
2 changes: 1 addition & 1 deletion src/Customer.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ public static function create(array $params = [])
{
return new static($params);
}
}
}
2 changes: 1 addition & 1 deletion src/Gateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -276,4 +276,4 @@ public function void($transaction, string $order = null)

return $this->process($transaction);
}
}
}
2 changes: 1 addition & 1 deletion src/Gettable.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ public function __get(string $property)

throw new \InvalidArgumentException('['.get_class($this).'] does not contain a property named ['.$property.']');
}
}
}
2 changes: 1 addition & 1 deletion src/Moneris.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,4 @@ public function connect()

return $gateway;
}
}
}
2 changes: 1 addition & 1 deletion src/Processor.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,4 +133,4 @@ protected static function submit(Transaction $transaction)

return $response;
}
}
}
3 changes: 1 addition & 2 deletions src/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace CraigPaul\Moneris;


/**
* CraigPaul\Moneris\Response
*
Expand Down Expand Up @@ -239,4 +238,4 @@ public function validate()

return $this;
}
}
}
2 changes: 1 addition & 1 deletion src/Settable.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ public function __set(string $property, $value)
throw new \InvalidArgumentException('['.get_class($this).'] does not contain a property named ['.$property.']');
}
}
}
}
2 changes: 1 addition & 1 deletion src/Transaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -309,4 +309,4 @@ public function validate(SimpleXMLElement $result)

return $response;
}
}
}
2 changes: 1 addition & 1 deletion src/Validator.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ public static function set(array $array, string $key)
{
return isset($array[$key]);
}
}
}
2 changes: 1 addition & 1 deletion src/Vault.php
Original file line number Diff line number Diff line change
Expand Up @@ -203,4 +203,4 @@ public function update(string $key, CreditCard $card)

return $this->process($transaction);
}
}
}

0 comments on commit 6f056d6

Please sign in to comment.