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