mirror of
https://github.com/kevin-DL/LaravelShoppingcart.git
synced 2026-01-12 02:55:13 +00:00
14 lines
184 B
PHP
14 lines
184 B
PHP
<?php
|
|
|
|
namespace Gloudemans\Tests\Shoppingcart\Fixtures;
|
|
|
|
class ProductModel
|
|
{
|
|
public $someValue = 'Some value';
|
|
|
|
public function find($id)
|
|
{
|
|
return $this;
|
|
}
|
|
}
|