mirror of
https://github.com/kevin-DL/LaravelShoppingcart.git
synced 2026-01-11 18:54:33 +00:00
16 lines
246 B
PHP
16 lines
246 B
PHP
<?php
|
|
|
|
namespace Gloudemans\Tests\Shoppingcart\Fixtures;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ProductModel extends Model
|
|
{
|
|
public $someValue = 'Some value';
|
|
|
|
public function find($id) : self
|
|
{
|
|
return $this;
|
|
}
|
|
}
|