mirror of
https://github.com/kevin-DL/LaravelShoppingcart.git
synced 2026-01-24 07:55:35 +00:00
Codestyle
ignore tests added to styleci.yml
This commit is contained in:
@@ -685,6 +685,7 @@ class Cart
|
|||||||
if ($this->session->has($this->instance)) {
|
if ($this->session->has($this->instance)) {
|
||||||
return $this->session->get($this->instance);
|
return $this->session->get($this->instance);
|
||||||
}
|
}
|
||||||
|
|
||||||
return new Collection();
|
return new Collection();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -728,6 +729,7 @@ class Cart
|
|||||||
if (!is_array($item)) {
|
if (!is_array($item)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return is_array(head($item)) || head($item) instanceof Buyable;
|
return is_array(head($item)) || head($item) instanceof Buyable;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -94,7 +94,7 @@ class CartItem implements Arrayable, Jsonable
|
|||||||
if (empty($name)) {
|
if (empty($name)) {
|
||||||
throw new \InvalidArgumentException('Please supply a valid name.');
|
throw new \InvalidArgumentException('Please supply a valid name.');
|
||||||
}
|
}
|
||||||
if (strlen($price) < 0 ||!is_numeric($price)) {
|
if (strlen($price) < 0 || !is_numeric($price)) {
|
||||||
throw new \InvalidArgumentException('Please supply a valid price.');
|
throw new \InvalidArgumentException('Please supply a valid price.');
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -374,8 +374,9 @@ class CartItem implements Arrayable, Jsonable
|
|||||||
|
|
||||||
case 'model':
|
case 'model':
|
||||||
if (isset($this->associatedModel)) {
|
if (isset($this->associatedModel)) {
|
||||||
return with(new $this->associatedModel)->find($this->id);
|
return with(new $this->associatedModel())->find($this->id);
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|||||||
@@ -1 +1,5 @@
|
|||||||
preset: laravel
|
preset: laravel
|
||||||
|
|
||||||
|
finder:
|
||||||
|
exclude:
|
||||||
|
- "tests"
|
||||||
Reference in New Issue
Block a user