Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
colinhall17 committed Aug 28, 2019
1 parent 2930a46 commit e547268
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Exceptions/ModelNotSetException.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace MacsiDigital\Stripe\Exceptions;

class ValidationFailedException extends Base
class ModelNotSetException extends Base
{

}
2 changes: 1 addition & 1 deletion src/PaymentMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class PaymentMethod extends StripeModel

protected $allowedMethods = ['get', 'find', 'insert', 'update'];

public $relationships = [
public $oneRelationships = [
'billing_detail' => BillingDetail::class,
'card' => Card::class,
'card_present' => CardPresent::class
Expand Down
2 changes: 1 addition & 1 deletion src/Support/OLDMODEL.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use BadMethodCallException;
use MacsiDigital\Stripe\Support\Query;

abstract class Model
abstract class OldModel
{
public $isStripeObject = true;

Expand Down
2 changes: 1 addition & 1 deletion src/Support/OLDQUERY.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Illuminate\Support\Collection;

class Query
class OldQuery
{
protected $model;

Expand Down

0 comments on commit e547268

Please sign in to comment.