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