Small Fixes

- PayoutItemDetails Errors
- Cleaning up CSS
This commit is contained in:
japatel
2015-02-02 13:04:22 -06:00
parent ac69aa65ed
commit b28718027a
2 changed files with 6 additions and 10 deletions

View File

@@ -19,7 +19,7 @@ use PayPal\Common\PayPalModel;
* @property string sender_batch_id * @property string sender_batch_id
* @property \PayPal\Api\PayoutItem payout_item * @property \PayPal\Api\PayoutItem payout_item
* @property string time_processed * @property string time_processed
* @property \PayPal\Api\Error error * @property \PayPal\Api\Error errors
* @property \PayPal\Api\Links[] links * @property \PayPal\Api\Links[] links
*/ */
class PayoutItemDetails extends PayPalModel class PayoutItemDetails extends PayPalModel
@@ -211,13 +211,13 @@ class PayoutItemDetails extends PayPalModel
/** /**
* Sets Error * Sets Error
* *
* @param \PayPal\Api\Error $error * @param \PayPal\Api\Error $errors
* *
* @return $this * @return $this
*/ */
public function setErrors($error) public function setErrors($errors)
{ {
$this->errors = $error; $this->errors = $errors;
return $this; return $this;
} }

View File

@@ -42,7 +42,6 @@ if (PHP_SAPI == 'cli') {
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<style> <style>
/* Header Links */ /* Header Links */
/* Adopted from http://ben.balter.com/2014/03/13/pages-anchor-links/ */
.header-link { .header-link {
position: absolute; position: absolute;
left: 7px; left: 7px;
@@ -63,11 +62,6 @@ if (PHP_SAPI == 'cli') {
/* End Header Links */ /* End Header Links */
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
}
li.list-group-item:hover { li.list-group-item:hover {
background-color: #EEE; background-color: #EEE;
} }
@@ -132,6 +126,8 @@ if (PHP_SAPI == 'cli') {
} }
body { body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
/* Margin bottom by footer height */ /* Margin bottom by footer height */
margin-bottom: 60px; margin-bottom: 60px;
} }